diff --git "a/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225.xcodeproj/project.xcworkspace/xcuserdata/nchkdxlq.xcuserdatad/UserInterfaceState.xcuserstate" "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225.xcodeproj/project.xcworkspace/xcuserdata/nchkdxlq.xcuserdatad/UserInterfaceState.xcuserstate" new file mode 100644 index 0000000..3fba520 Binary files /dev/null and "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225.xcodeproj/project.xcworkspace/xcuserdata/nchkdxlq.xcuserdatad/UserInterfaceState.xcuserstate" differ diff --git "a/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225.xcodeproj/xcuserdata/nchkdxlq.xcuserdatad/xcschemes/xcschememanagement.plist" "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225.xcodeproj/xcuserdata/nchkdxlq.xcuserdatad/xcschemes/xcschememanagement.plist" new file mode 100644 index 0000000..a5f0f18 --- /dev/null +++ "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225.xcodeproj/xcuserdata/nchkdxlq.xcuserdatad/xcschemes/xcschememanagement.plist" @@ -0,0 +1,27 @@ + + + + + SchemeUserState + + 侧滑菜单.xcscheme + + orderHint + 0 + + + SuppressBuildableAutocreation + + DA8894061B53E3FF00B47DE7 + + primary + + + DA88941F1B53E3FF00B47DE7 + + primary + + + + + diff --git "a/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225.xcodeproj/xcuserdata/nchkdxlq.xcuserdatad/xcschemes/\344\276\247\346\273\221\350\217\234\345\215\225.xcscheme" "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225.xcodeproj/xcuserdata/nchkdxlq.xcuserdatad/xcschemes/\344\276\247\346\273\221\350\217\234\345\215\225.xcscheme" new file mode 100644 index 0000000..07476ec --- /dev/null +++ "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225.xcodeproj/xcuserdata/nchkdxlq.xcuserdatad/xcschemes/\344\276\247\346\273\221\350\217\234\345\215\225.xcscheme" @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git "a/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/CenterPage/Controller/BaseAnimationController.m" "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/CenterPage/Controller/BaseAnimationController.m" index 2229513..ff79623 100644 --- "a/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/CenterPage/Controller/BaseAnimationController.m" +++ "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/CenterPage/Controller/BaseAnimationController.m" @@ -25,7 +25,9 @@ -(void)initView{ _demoView = [[UIView alloc] initWithFrame:CGRectMake(SCREEN_WIDTH/2-50, SCREEN_HEIGHT/2-100,100 ,100 )]; _demoView.backgroundColor = [UIColor redColor]; [self.view addSubview:_demoView]; - + + UIButton *btn = [UIButton buttonWithType:UIButtonTypeContactAdd]; + [self.view addSubview:btn]; } diff --git "a/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/LeftPage/LeftViewController.m" "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/LeftPage/LeftViewController.m" index dfc059b..395bfce 100644 --- "a/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/LeftPage/LeftViewController.m" +++ "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/LeftPage/LeftViewController.m" @@ -31,6 +31,11 @@ -(void)viewDidLoad{ [self initView]; } +- (void)test +{ + +} + -(void)initData{ _menuArray = [NSArray arrayWithObjects:@"基础动画",@"关键帧动画",@"组动画",@"过渡动画",@"仿射变换",@"综合案例", nil]; } diff --git "a/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/RightPage/RightViewController.h" "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/RightPage/RightViewController.h" index 1b6fcda..11cafad 100644 --- "a/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/RightPage/RightViewController.h" +++ "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/RightPage/RightViewController.h" @@ -9,5 +9,5 @@ #import @interface RightViewController : UIViewController - +@property (nonatomic, strong) UIView *headView; @end diff --git "a/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/RightPage/RightViewController.m" "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/RightPage/RightViewController.m" index 046a46c..3c7e865 100644 --- "a/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/RightPage/RightViewController.m" +++ "b/\344\276\247\346\273\221\350\217\234\345\215\225/\344\276\247\346\273\221\350\217\234\345\215\225/RightPage/RightViewController.m" @@ -10,6 +10,8 @@ @implementation RightViewController + +// view即将显示调用 -(void)viewDidLoad{ [super viewDidLoad]; self.view.backgroundColor = [UIColor orangeColor]; @@ -19,6 +21,8 @@ -(void)viewDidLoad{ label.font = [UIFont systemFontOfSize:22]; label.textAlignment = NSTextAlignmentCenter; [self.view addSubview:label]; + + self.view.backgroundColor = [UIColor redColor]; } @end