标签:
今天刘国斌老师讲了关于怎么编辑图片的各种板式,如何把代码里的数据转成data再存到本地的文件,之后再取出来用 。感觉这些比较难理解,课后也是用好多的事件进行练习,今天上午同样讲了怎样创建一个服务器,去核多个人共同去开发一个项目,实现多人的文件同步,这些感觉很受用。
刘老师在这段时间讲课很细致,可能知道这段的内容比较重要,个人感觉现在学得东西虽然不多,但是很重要,基础一定要打好。 整理了今天的难点 - (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated{ // ---------------------- 功能分区 ----------------------------- // 把系统准备的导航控制器赋值给自己声明的属性 // 如果不把他提前声明一个navigationController的属性在这里接住它,那么在剩下面的doneAction/的按钮点击事件里取不到一个导航控制器push到新的页面,
self.ng=navigationController; //设置系统页面显示图片的控件的尺寸 不然的话会被自己添加的控件盖上 UIView *puView = [viewController.view.subviews firstObject]; CGRect frame = puView.frame; frame.size.height = 567; puView.frame = frame; // ---------------------- 功能分区 ---------------------------- self.vv=[[UIView alloc]initWithFrame:CGRectMake(0, 560, 375, 100)]; self.vv.backgroundColor=[UIColor redColor]; [viewController.view addSubview:self.vv];
self.sv = [[UIScrollView alloc]initWithFrame:CGRectMake(0, 20, 375, 80)]; self.sv.backgroundColor = [UIColor blueColor]; [self.vv addSubview:self.sv]; UIButton *doneBtn = [[UIButton alloc]initWithFrame:CGRectMake(325, 0, 50, 20)]; [doneBtn setTitle:@"Done" forState:UIControlStateNormal]; [self.vv addSubview:doneBtn]; [doneBtn addTarget:self action:@selector(doneAction) forControlEvents:UIControlEventTouchUpInside];
}
|
标签:
原文地址:http://www.cnblogs.com/lanyisanqqi/p/5156372.html