码迷,mamicode.com
首页 >  
搜索关键字:objectforkey    ( 76个结果
首页 、引导页、版本
通过 kCFBundleVersionKey 获取APP版本的versionkeyName 通过 [[[NSBundle manbundle]infoDictionary] objectForKey versionkeyName] 获取当前版本号 通过 [[NSUserDefaults standa
分类:其他好文   时间:2016-02-03 17:24:15    阅读次数:228
OC——UIlabel text的常规应用
UILabel *downloader = [[UILabel alloc]init]; NSString *downloadCount = [[LibraryArr objectAtIndex:indexPath.row]objectForKey:@"downloadCou...
分类:其他好文   时间:2016-01-19 12:16:58    阅读次数:132
使用搜索栏过滤collectionView(按照首字母)
1.解析json数据NSDictionary *citiesDic = [CoreJSONSerialization coreJSONSerialization:@"cities"];NSDictionary *infor = [citiesDic objectForKey:@"infor"];NS...
分类:其他好文   时间:2016-01-12 19:20:52    阅读次数:193
复制文字,链接,剪贴板的使用
//获取剪贴板 UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; //设置剪贴板内容 pasteboard.string = [defaults objectForKey:@"shareURL"]; if...
分类:其他好文   时间:2016-01-03 17:13:15    阅读次数:161
step 3 NSCache
NSCache介绍NSCache 是苹果提供的一个专门用来做缓存的类使用和 NSMutableDictionary 非常相似是线程安全的当内存不足的时候,会自动清理缓存程序开始时,可以指定缓存的数量 & 成本方法1 取值? - (id)objectForKey:(id)key;2 设置对象,0成本?...
分类:系统相关   时间:2016-01-01 21:04:02    阅读次数:229
常用存储位置
版本号: NSString *key = @"CFBundleVersion"; NSString *lastVersion = [[NSUserDefaults standardUserDefaults] objectForKey:key]; NSLog(@"%@", lastV...
分类:其他好文   时间:2015-12-17 09:23:34    阅读次数:182
iOS 笔记-incompatible pointer types initializing 'NSMutableString *' with an expression of type 'NSString *'警告处理
记录下来,以防止再犯错代码如下NSString *userHeader = [userInfoDictionary objectForKey:@"photo"]; NSMutableString *mutableuserHeader = [NSMutableString stringWithS...
分类:移动开发   时间:2015-12-14 16:31:35    阅读次数:429
iOS开篇——UI之UITextView
创建UITextView//创建一个单例对象 存储_str字符串 NSUserDefaults * hd = [NSUserDefaults standardUserDefaults]; _str = [hd objectForKey:@"str"]; UIText...
分类:移动开发   时间:2015-11-24 06:14:31    阅读次数:182
NSUserDefaults的使用,保存登录状态和设置的轻量本地化存储
NSDictionary* defaults = [[NSUserDefaults standardUserDefaults] dictionaryRepresentation];if([[NSUserDefaults standardUserDefaults] objectForKey:@"mes...
分类:其他好文   时间:2015-09-26 21:18:27    阅读次数:309
xcode7.0 lldb alloc init
(lldb) po [dicData objectForKey:@"tj"](lldb) po @""(lldb) po nil(lldb) po dicTJ.counterror: Execution was interrupted, reason: Attempted to dereferenc...
分类:数据库   时间:2015-09-26 13:16:38    阅读次数:402
76条   上一页 1 2 3 4 5 ... 8 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!