摘要: //#import "sys/utsname.h" struct utsname systemInfo; uname(&systemInfo); NSString *deviceString = [NSString stringWithCString:systemInfo.machine encod 阅读全文
posted @ 2016-03-08 13:43 刚刚888 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 将颜色合成图片 将颜色合成图片 +(UIImage *)imageWithColor:(UIColor *)color { CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f); UIGraphicsBeginImageContext(rect.size) 阅读全文
posted @ 2016-03-08 12:46 刚刚888 阅读(230) 评论(0) 推荐(0) 编辑
摘要: HTML代码: <html> <head> <title>HTML中用JS调用OC方法</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> [removed] function openAlbum() 阅读全文
posted @ 2016-03-08 12:37 刚刚888 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 删除本地文件 #ifndef USERINFOPATH #define USERINFOPATH [NSString stringWithFormat:@"%@/%@info.plist",DOCUMENTS, [[NSUserDefaults standardUserDefaults] strin 阅读全文
posted @ 2016-03-08 12:36 刚刚888 阅读(180) 评论(0) 推荐(0) 编辑
摘要: NSArray倒序 NSArray *tmparr = [[upLoadImageArr reverseObjectEnumerator] allObjects]; ios 正则表达式替换 1. 不可变字符串 (content 是不可变) NSRegularExpression *regularEx 阅读全文
posted @ 2016-03-08 12:35 刚刚888 阅读(158) 评论(0) 推荐(0) 编辑
摘要: tableView和scrollView滚动起冲突 tableView也是继承的scrollView,所以在滚动的时候也会触发scrollView的代理方法,在scrollViewDidScroll中做一下类型判断就可以了 - (void)scrollViewDidScroll:(UIScrollV 阅读全文
posted @ 2016-03-08 12:35 刚刚888 阅读(264) 评论(0) 推荐(0) 编辑
摘要: // 这里做预加载 CGPoint currentOffset = scrollView.contentOffset; NSTimeInterval currentTime = [NSDate timeIntervalSinceReferenceDate]; NSTimeInterval timeD 阅读全文
posted @ 2016-03-08 12:34 刚刚888 阅读(345) 评论(0) 推荐(0) 编辑
摘要: func isIphone6() -> Bool { if screenWidth() > 320 { return true } else { return false } } func isIphone6Plus() -> Bool { if screenWidth() > 375 { retu 阅读全文
posted @ 2016-03-08 12:33 刚刚888 阅读(248) 评论(0) 推荐(0) 编辑
摘要: //To get string from the title of the HTML page: NSString *currentURL = [theWebView stringByEvaluatingJavaScriptFromString:@"document.getElementsByTag 阅读全文
posted @ 2016-03-08 12:32 刚刚888 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 用Block封装ASIHttpRequest 横方便的网络请求方法,不用每次都写代理方法.使代码先得很整齐,不会凌乱. 接口部分: // // LYHASIRequestBlock.h // ASIBlockTest // // Created by Charles Leo on 14-7-23. 阅读全文
posted @ 2016-03-08 12:32 刚刚888 阅读(161) 评论(0) 推荐(0) 编辑