#pragma mark 键盘弹起操作- (void)keyboardWillShow:(NSNotification *)notification{ NSDictionary *info = notification.userInfo; kbSize = [[info objectForKey:U...
分类:
移动开发 时间:
2015-09-23 18:43:35
阅读次数:
174
NSString *tempstring = [dic objectForKey:key];//@"[]{}(#%-*+=_)\\|~(<>$%^&*)_+ " NSCharacterSet *doNotWant = [NSCharacterSet characterSetWithChar...
分类:
其他好文 时间:
2015-09-21 19:26:26
阅读次数:
433
开始在cell中是使用这个函数来加载图片的。[self.photoView sd_setImageWithURL:[NSURL URLWithString: [post objectForKey: @"thumb_url"]] completed:^(UIImage *image, NSError ...
分类:
Web程序 时间:
2015-09-11 18:53:52
阅读次数:
234
容器(NSMutableArray, NSMutableDictionary)的获取元素方法objectForKey:返回id类型,
转换NSInteger类型, 使用integerValue.// newQuestion is an NSDictionary defined somewhere
NSInteger questionId = [[newQuestion objectForKey:@...
分类:
其他好文 时间:
2015-07-13 12:24:08
阅读次数:
124
NSString *executableFile = [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString *)kCFBundleExecutableKey];NSString *version = [[[NSBundle ma...
分类:
移动开发 时间:
2015-07-11 21:23:47
阅读次数:
138
UIImagePickerController继承于UINavigationController。UIImagePickerController可以用来选择照片,它还可以用来拍照和录制视频。
//视频保存后 播放视频
NSURL *url = [info objectForKey:UIImagePickerControllerMediaURL];
NSString *urlPath = [url path];
if (UIVideoAtPathIsCompat...
分类:
其他好文 时间:
2015-07-10 16:39:06
阅读次数:
105
时间字符串从网上请求下来的字符串NSString * expireDatetime = [dictionary objectForKey:@"expireDatetime"];因为剩余时间有可能为零 //剩余时间可能出现null的格式 运行的时候会出错 所以要把这样的信息过滤 if([expi...
分类:
其他好文 时间:
2015-07-01 20:36:47
阅读次数:
127
郝萌主倾心贡献,尊重作者的劳动成果,请勿转载。如果文章对您有所帮助,欢迎给作者捐赠,支持郝萌主,捐赠数额随意,重在心意^_^ 我要捐赠: 点击捐赠Cocos2d-X源码下载:点我传送游戏官方下载:http://dwz.cn/RwTjl游戏视频预览:http://dwz.cn/RzHHd游戏开发博客:http://dwz.cn/RzJzI游戏源码传送:http://dwz.cn/Nret11.不可变...
分类:
其他好文 时间:
2015-06-29 20:32:38
阅读次数:
113
@property (readonly)
NSUInteger count;
//1.利用指定的key寻找对应的value
- (id)objectForKey:(id)aKey;
//2. keyEnumerator得到一个字典的所有键值
- (NSEnumerator *)keyEnumerator;
//3.初始化字典
- (instancetype)init
N...
项目中遇到一个问题就是,图片太大,导致上传到服务器或者下载时使用 SDWebImage(最大允许 2M 图片)时 闪退。解决办法是在本地先处理好图片。按照指定宽度等比例 缩放图片后,再使用。//使用UIImage *portraitImg = [info objectForKey:UIImagePi...
分类:
其他好文 时间:
2015-06-02 12:49:15
阅读次数:
93