码迷,mamicode.com
首页 >  
搜索关键字:nil    ( 2740个结果
IOS 本地通知UILocalNotification
//发送通知UILocalNotification*notification=[[UILocalNotificationalloc]init];if(notification!=nil){NSDate*now=[NSDatenew];notification.fireDate=[nowdateByA...
分类:移动开发   时间:2014-06-11 22:49:44    阅读次数:373
IOS中NSNotification使用笔记
1 基本用法 添加观察(可能很多页面) [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeIntlCode:) name:NOTIFICATION_SUCCESS_SELECT_INTLCODE object:nil]; 发出通知(可能只有一个页面) ...
分类:移动开发   时间:2014-06-07 13:37:38    阅读次数:223
Format string is not a string literal (potentially insecure)
Warning: Format string is not a string literal (potentially insecure)[objc]view plaincopyNSString*str=nil;str=[NSStringstringWithFormat:@"---%d---",18...
分类:其他好文   时间:2014-06-07 06:52:53    阅读次数:263
ViewController的view的创建
先加载storyboard文件(Test是storyboard的文件名)UIStoryboard*storyboard = [UIStoryboardstoryboardWithName:@"Test"bundle:nil];?接着初始化storyboard中的控制器?初始化“初始控制器”(箭头所指...
分类:其他好文   时间:2014-06-06 20:07:21    阅读次数:221
控制器的生命周期
#pragma mark 当需要创建控制器的view时就会调用// 当需要使用到当前控制器的view,并且view为nil,就会调用loadView来创建view// 重写这个方法的目的:就是为了自定义view// 不需要调用[super loadView];- (void)loadView{// ...
分类:其他好文   时间:2014-06-05 14:20:38    阅读次数:186
timer 在滚动的时候停止了的解决办法
方法一:-(void) viewDidLoad{[self performSelectorInBackground:@selector(call1) withObject:nil];}-(void) call1{timer1 = [NSTimer scheduledTimerWithTimeInte...
分类:其他好文   时间:2014-06-04 20:23:05    阅读次数:228
Xcode中设置按钮在十分钟之内禁用
btn.enabled=NO;` NSTimer * notificationTimer = [NSTimer scheduledTimerWithTimeInterval:10*60.0 target:selfselector:@selector(enable) userInfo:nil rep....
分类:其他好文   时间:2014-06-04 18:08:11    阅读次数:199
ios 使用xcode调试代码的时候进入断点显示变量全是nil,但NSLog输出那个变量却是有值的
ios 使用xcode调试代码的时候进入断点显示变量全是nil,但NSLog输出那个变量却是有值的...
分类:移动开发   时间:2014-06-02 22:37:34    阅读次数:425
学习IOS开发UI篇--UI知识点总结(二) UILabel/UIImageView
UILabel:常用属性@property(nonatomic,copy) NSString *text; // default is nil@property(nonatomic,retain) UIFont *font; // default is...
分类:移动开发   时间:2014-06-02 00:03:51    阅读次数:432
iOS重用宏定义
iOS 多快好省的宏(转)原文地址:http://my.oschina.net/yongbin45/blog/150149// 字符串:#ifndef nilToEmpty#define nilToEmpty(object) (object!=nil)?object:@""#endif#ifnde....
分类:移动开发   时间:2014-06-01 17:14:10    阅读次数:339
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!