摘要: 解决方法可以在自定义的TabbarViewController里viewDidLoad方法里self.view.backgroundColor = [UIColor whiteColor];如果没有自定义tabbarController的话可以这样self.navigationController.... 阅读全文
posted @ 2015-09-06 21:38 嗷大喵 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 项目主页:https://github.com/rofl0r/proxychains-ng官方说明:proxychains ng (new generation) - a preloader which hooks calls to sockets in dynamically linked pro... 阅读全文
posted @ 2015-09-04 22:39 嗷大喵 阅读(2056) 评论(0) 推荐(1) 编辑
摘要: 处理锯齿当然要用抗锯齿,iOS 可以通过修改 Plist 实现全局抗锯齿,但是这样容易出现性能问题。所以就要使用对单个 Layer 开启抗锯齿的方法layer.allowsEdgeAntialiasing = true摘自:《Producter》 阅读全文
posted @ 2015-08-30 20:37 嗷大喵 阅读(625) 评论(0) 推荐(0) 编辑
摘要: SDWebImage本身就已经支持了webp格式的图片1.下载libwebphttps://github.com/webmproject/libwebp然后你需要先安装好有homebrew或者macports安装homebrewh很简单,执行一条命令即可ruby -e "$(curl -fsSL h... 阅读全文
posted @ 2015-06-08 22:51 嗷大喵 阅读(1655) 评论(0) 推荐(0) 编辑
摘要: 调用contextWithOptions:和createCGImage: fromRect:方法创建CIContext。与以往不同的地方是CIImage没有frame与bounds属性;只有extent属性。你将非常频繁的使用这个属性作为createCGImage: fromRect:方法的第二个参... 阅读全文
posted @ 2015-05-28 18:31 嗷大喵 阅读(1088) 评论(0) 推荐(0) 编辑
摘要: defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID获取新版xcode的uuidXcode6.3.2显示E969541F-E6F9-4D25-8158-72DC3545A6C6find ~/Lib... 阅读全文
posted @ 2015-05-27 09:48 嗷大喵 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 方法1:UInt32 audioRoute = kAudioSessionOverrideAudioRoute_Speaker;AudioSessionSetProperty(kAudioSessionProperty_OverrideAudioRoute, sizeof(audioRoute), ... 阅读全文
posted @ 2015-05-22 00:08 嗷大喵 阅读(1379) 评论(0) 推荐(0) 编辑
摘要: 字符属性 字符属性可以应用于 attributed string 的文本中。 NSString *const NSFontAttributeName;(字体) NSString *const NSParagraphStyleAttributeName;(段落) NSStri... 阅读全文
posted @ 2015-05-09 20:56 嗷大喵 阅读(172) 评论(0) 推荐(0) 编辑
摘要: UITextPosition* beginning = _commentTextView.beginningOfDocument; UITextRange* selectedRange = _commentTextView.selectedTextRange; UITextPo... 阅读全文
posted @ 2015-05-06 11:02 嗷大喵 阅读(929) 评论(0) 推荐(0) 编辑
摘要: https://developer.apple.com/library/downloads/docset-index.dvtdownloadableindex找到里面的文档下载地址例如iOS 8.3的离线文档下载地址,把地址复制下来用迅雷下载就快多了https://devimages.apple.c... 阅读全文
posted @ 2015-04-28 22:05 嗷大喵 阅读(958) 评论(0) 推荐(0) 编辑