123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #import <UIKit/UIKit.h>
- #import "SVGKit.h"
- #import "SVGKImage.h"
- #define LOAD_SYNCHRONOUSLY 0
- #define ALLOW_2X_STYLE_SCALING_OF_SVGS_AS_AN_EXAMPLE 1
- #define ALLOW_SVGKFASTIMAGEVIEW_TO_DO_HIT_TESTING 1
- #define SHOW_DEBUG_INFO_ON_EACH_TAPPED_LAYER 1
- @interface DetailViewController : UIViewController < UIPopoverControllerDelegate, UISplitViewControllerDelegate, UIScrollViewDelegate>
- @property (nonatomic, strong) SVGKSource *sourceOfCurrentDocument;
- @property (nonatomic, strong) UITextView* exportText;
- @property (nonatomic, strong) NSMutableString* exportLog;
- @property (nonatomic, strong) UITapGestureRecognizer* tapGestureRecognizer;
- @property (nonatomic, strong) IBOutlet UIToolbar *toolbar;
- @property (nonatomic, strong) IBOutlet UIScrollView *scrollViewForSVG;
- @property (nonatomic, strong) IBOutlet SVGKImageView *contentView;
- @property (nonatomic, strong) IBOutlet UIActivityIndicatorView *viewActivityIndicator;
- @property (nonatomic, strong) IBOutlet UIProgressView* progressLoading;
- @property (nonatomic, strong) IBOutlet UIView* subViewLoadingPopup;
- @property(nonatomic,strong) IBOutlet UILabel* labelParseTime;
- @property(nonatomic) BOOL requiresLayeredImageView;
- @property (nonatomic, strong) id detailItem;
- - (IBAction)animate:(id)sender;
- - (IBAction) showHideBorder:(id)sender;
- @end
|