ios高效开发--blocks相关1、替换delegate
如果我们有2个viewController,a和b,当我们从a界面push到b后,在b上面触发了一些事件,这些时间又会影响到a界面上的内容。
上面是2个界面,当我们点击b界面的按钮3的时候,希望a界面上文字也相应的改变了如 一般...
分类:
其他好文 时间:
2014-05-10 01:45:33
阅读次数:
473
在iOS中ViewController的基类是UIViewController;Mac中ViewController的基类是NSViewController。Mac中ViewController父类是NSViewController,子类很少,笔者就查到了NSPageController。如果应用中...
分类:
移动开发 时间:
2014-05-09 18:43:51
阅读次数:
510
UITableView
继承自UIScrollView,所以可以滚动,但只能是纵方向上的。UITableView由section和cell组成,填充的内容来自数据源,一般数据源由ViewController作为代理,因此需要遵循它的两个协议,分别是UITableViewDataSource
和UIT...
分类:
其他好文 时间:
2014-05-07 09:59:32
阅读次数:
324
在viewController里,添加 1 //创建一个基于UIImage的图形上下文 2
UIGraphicsBeginImageContext(CGSizeMake(320, 450)); 3
//取出“当前”上下文,也就是上句话创建的上下文,返回CGContextRef类型...
分类:
其他好文 时间:
2014-04-29 23:34:20
阅读次数:
434
主要需要注意的几个问题: 1.导入图片方式最好用文件导入 代码:
在ViewController.m文件中 2.UILable常用属性 @property(nonatomic,copy) NSString *text;
//设置文本内容 @...
分类:
移动开发 时间:
2014-04-29 22:28:37
阅读次数:
616
//// ViewController.m// mapdemo001//// Created by
apple on 14-4-28.// Copyright (c) 2014年 apple. All rights reserved.//#import
"ViewController.h"#...
分类:
移动开发 时间:
2014-04-29 17:02:06
阅读次数:
529
1、怎样写一个不泄漏的NavigationController页面跳转程序?非arc模式下,假设有A、B两个viewController,从A推到B,怎样写内存才能不泄漏?A.m-(IBAction)btnGoToViewControllerB:(id)sender{
ViewControll...
分类:
移动开发 时间:
2014-04-29 16:26:47
阅读次数:
503
//// ViewController.m// mapdemo001//// Created by
apple on 14-4-28.// Copyright (c) 2014年 apple. All rights reserved.//#import
"ViewController.h"#...
分类:
移动开发 时间:
2014-04-29 15:05:05
阅读次数:
596