码迷,mamicode.com
首页 >  
搜索关键字:rootviewcontroller    ( 392个结果
QQ列表的展开收起
RootViewController.h @interface RootViewController : UIViewController { BOOL Close[15]; //用于存放每一组的收起展开状态 YES 是收起 NO是展开 UITableView *_tableView; } @property(nonatomic, retain)NSArray *da...
分类:其他好文   时间:2014-10-30 11:50:52    阅读次数:113
电话本的检索功能
设置带有导航栏的根视图控制器 RootViewController.h @interface RootViewController : UIViewController { UITableView *_tableView; } @property(nonatomic, retain)NSArray *data; //存放原本的数据 @property(nonatomic, reta...
分类:其他好文   时间:2014-10-30 11:50:28    阅读次数:182
KVO---视图间数据的传递:标签显示输入的内容【多个视图中】
RootViewController.m #import "ModalViewController.h" @interface RootViewController () @end @implementation RootViewController { ModalViewController *modalCtrl; } - (id)initWithNibName:(...
分类:其他好文   时间:2014-10-29 14:58:08    阅读次数:169
代理---视图间数据的传递:标签显示输入的内容【多个视图中】
RootViewController.h #import "ModalViewController.h" @interface RootViewController : UIViewController RootViewController.m @interface RootViewController () @end @implementation RootViewContro...
分类:其他好文   时间:2014-10-29 14:57:57    阅读次数:190
单例---视图间数据的传递:标签显示输入的内容【多个视图中】
RootViewController.m - (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor greenColor]; //创建显示文字的label UILabel *label = [[UILabel alloc] initWithFr...
分类:其他好文   时间:2014-10-29 14:57:16    阅读次数:162
通知---视图间数据的传递:标签显示输入的内容【多个视图中】
RootViewController.m - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { ...
分类:其他好文   时间:2014-10-29 14:57:16    阅读次数:123
百度地图demo中的一点代码的优化
1 @implementation RootViewController 2 3 - (void)viewDidLoad 4 { 5 [super viewDidLoad]; 6 _demoNameArray = [[NSArray alloc]initWithObjects: ...
分类:其他好文   时间:2014-10-28 12:03:49    阅读次数:293
PendulumViewDemo
源代码地址:http://url.cn/Sj5SSX效果图:工程图:注意,此代码中要加入第三方库PendulumView。RootViewController.m//点击任何处弹出提示-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)...
分类:其他好文   时间:2014-10-28 11:52:45    阅读次数:154
ToastDemo
效果图:工程图:注意:需要加入的第三方Toast.RootViewController.m//点击任何处,弹出提示-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ [self.view makeToast:@"Th...
分类:其他好文   时间:2014-10-27 17:05:16    阅读次数:248
SVProgressHUDDemo
效果图:工程图:注意:要加入第三方库SVProgressHUD代码:RootViewController.m//点击任何处,弹出提示框-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ [SVProgressHUD ...
分类:其他好文   时间:2014-10-27 17:00:29    阅读次数:251
392条   上一页 1 ... 28 29 30 31 32 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!