FaceViewController.h 933 B

1234567891011121314151617181920212223242526
  1. #import <UIKit/UIKit.h>
  2. @protocol FaceViewControllerDelegate <NSObject>
  3. - (void) selectImageNameString:(NSString*)imageName ShortName:(NSString *)shortName isSelectImage:(BOOL)isSelectImage;
  4. - (void) faceViewDeleteAction;
  5. @end
  6. @interface FaceViewController : UIView <UIScrollViewDelegate>{
  7. NSMutableArray *_phraseArray;
  8. UIScrollView *_sv;
  9. UIPageControl* _pc;
  10. BOOL pageControlIsChanging;
  11. }
  12. @property (nonatomic, weak) id<FaceViewControllerDelegate> delegate;
  13. //@property (nonatomic, strong) NSMutableArray *faceArray;
  14. //@property (nonatomic, strong) NSMutableArray *imageArrayC;
  15. //@property (nonatomic, strong) NSMutableArray *imageArrayE;
  16. @property (nonatomic, strong) NSMutableArray *imageArray;
  17. @property (nonatomic, strong) NSMutableArray *shortNameArray;
  18. @property (nonatomic, strong) NSMutableArray *shortNameArrayC;
  19. @property (nonatomic, strong) NSMutableArray *shortNameArrayE;
  20. @end