码迷,mamicode.com
首页 >  
搜索关键字:nsdictionary    ( 1069个结果
UILabel垂直方向显示(上下的顺序显示)。
NSString* text = @"一"; NSDictionary *attribute = @{NSFontAttributeName: [UIFont systemFontOfSize:16]}; CGSize size = [text boundingRectWithSize:CGSize ...
分类:其他好文   时间:2016-09-07 12:53:40    阅读次数:221
iOS常用公共方法
1. 获取磁盘总空间大小 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 //磁盘总空间 + (CGFloat)diskOfAllSizeMBytes{ CGFloat size = 0.0; NSError *error; NSDictionary *di ...
分类:移动开发   时间:2016-09-02 15:54:17    阅读次数:239
JSONModel 嵌套字典数组 JSONModel nest NSDictionary NSArray
JSONModel 嵌套字典数组 JSONModel nest NSDictionary NSArray ...
分类:编程语言   时间:2016-09-01 12:37:31    阅读次数:267
关于AF请求报错Request failed: unacceptable content-type: text/plain 解决方案
NSString *path = @"/resource/getNotice"; NSString *UrlStr = [NSString stringWithFormat:@"%@%@",TCTHttpUrl,path]; NSDictionary *parameters = @{@"pageNo ...
分类:其他好文   时间:2016-09-01 10:34:32    阅读次数:252
重写NSArray与NSDictionary的descriptionWithLocale方法
重写NSArray的descriptionWithLocale方法: NSArray+log.h NSArray+log.m 重写NSDictionary的descriptionWithLocale方法: NSDictionary.h NSDictionary.m ...
分类:其他好文   时间:2016-08-30 00:33:56    阅读次数:322
iOS - 数组与字典(NSArray & NSDictionary)
1. 数组的常用处理方式 // 不可变数组 //1.数组的创建 NSString *s1 = @"zhangsan"; NSString *s2 = @"lisi"; NSString *s3 = @"wangwu"; //(1) NSArray *array1 = [[NSArray alloc] ...
分类:移动开发   时间:2016-08-29 23:56:17    阅读次数:249
第十四篇、常用的分类文件
0.链接地址 1.NSArray 2.NSDictionary ...
分类:其他好文   时间:2016-08-26 21:25:27    阅读次数:195
iOS开发解决 jsonModel 属性跟系统的重复
-(id)initWithDic:(NSDictionary *)dic { if (self = [super init]) { [self setValuesForKeysWithDictionary:dic]; } return self; } -(void)setValue:(id)valu ...
分类:移动开发   时间:2016-08-26 10:38:38    阅读次数:556
iOS 判断App启动方式
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions说明:当应用程序启动时执行,应用程序启动入口。只在应用程序启动时执行一次。appli ...
分类:移动开发   时间:2016-08-23 11:36:37    阅读次数:217
iOS关于LKDBHelper实体对象映射插件运用
iOS关于LKDBHelper实体对象映射插件运用 iOS关于LKDBHelper实体对象映射插件运用 一 插件简介: 其github地址:https://github.com/li6185377/LKDBHelper-SQLite-ORM 全面支持 NSArray,NSDictionary, Mo ...
分类:移动开发   时间:2016-08-21 11:05:15    阅读次数:289
1069条   上一页 1 ... 10 11 12 13 14 ... 107 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!