码迷,mamicode.com
首页 >  
搜索关键字:nslog    ( 1220个结果
为什么 NSLog 不支持 Swift 对象(转)
https://segmentfault.com/a/1190000005668218 也就说: 1. 如果是 OC 的对象,重写 description 的 get 方法就可以了。 2. 如果不是 OC 对象,遵循协议 CustomDebugStringConvertible 就可以了。 输出: ...
分类:编程语言   时间:2016-06-09 12:19:29    阅读次数:256
打印frame
NSLog(@"%@",NSStringFromCGRect(switch.frame)); 或者 CFShow(NSStringFromCGRect(switch.frame)); 打印 CGSize : NSLog(@"%@",NSStringFromCGSize(someCG Size )); ...
分类:其他好文   时间:2016-06-08 00:00:49    阅读次数:244
iOS自定义输出日志,取代NSLog
在pch文件中: #ifdef DEBUG #define ZSLog(...) NSLog(__VA_ARGS__) #else #define ZSLog(...) #endif ...
分类:移动开发   时间:2016-06-07 12:58:48    阅读次数:261
iOS 获取今年指定月的天数
//调用 NSInteger i = [self howManyDaysInThisMonth:2]; NSLog(@"%ld",(long)i); // 获取今年指定月的天数 - (NSInteger)howManyDaysInThisMonth :(NSInteger)imonth { int ...
分类:移动开发   时间:2016-06-01 14:19:57    阅读次数:249
iOS 日志
去掉日志 #ifndef __OPTIMIZE__ #define NSLog(...) NSLog(__VA_ARGS__) #else #define NSLog(...){} #endif 打开Xcode -->>product -->scheme -->>edit scheme -->inf ...
分类:移动开发   时间:2016-05-31 19:06:18    阅读次数:203
Object C中的数据类型表
类型例子NSLog chars char 'a', '\n' %c short int — %hi, %hx, %ho unsigned short int %hu, %hx, %ho int 12, -97, 0xFFE0, 0177 %i, %x, %o unsigned int 12u, 10 ...
分类:其他好文   时间:2016-05-31 16:01:28    阅读次数:120
拨打电话和清除缓存
NSLog(@"客服电话"); UIWebView*callWebview =[[UIWebView alloc] init]; NSURL *telURL =[NSURL URLWithString:@"tel:400-041-5656"];// 貌似tel:// 或者 tel: 都行 [call ...
分类:其他好文   时间:2016-05-31 12:14:43    阅读次数:160
tableview 和手势冲突
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch { // 输出点击的view的类名 NSLog(@"%@", NSStringFromClas ...
分类:其他好文   时间:2016-05-31 12:09:46    阅读次数:134
iOS plist
//存 NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES); NSString *path=[paths objectAtIndex:0]; NSLog(@"path ...
分类:移动开发   时间:2016-05-27 14:29:48    阅读次数:189
【代码笔记】手机号验证
代码: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. //会输出1或者0.1为YES,0为NO NSLog(@" %i--",[self validateMo ...
分类:移动开发   时间:2016-05-26 10:09:55    阅读次数:162
1220条   上一页 1 ... 28 29 30 31 32 ... 122 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!