摘要: 修改barbuttonItem背景色 设置 title 字体 设计导航栏全透明 去掉UINavigationController自带的返回按钮自带的back字符,但是保存图标和功能。 阅读全文
posted @ 2016-02-16 11:54 大雨不晴 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 原文地址: https://github.com/ChenYilong/iOS9AdaptationTips WWDC 2015 Session 703: "Privacy and Your App ( 时间在30:18左右)关于 URL scheme 的介绍,指出: 也就是说:在iOS9中,如果使 阅读全文
posted @ 2016-02-15 15:34 大雨不晴 阅读(1781) 评论(0) 推荐(0) 编辑
摘要: 原文地址: https://github.com/ChenYilong/iOS9AdaptationTips 关于App Transport Security,每个应用都属于4个大类当中的一类。我们来看看每一个大类都是怎样影响应用的。 --分类名解释 1. HTTPS Only (只有HTTPS,所 阅读全文
posted @ 2016-02-15 14:52 大雨不晴 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 原文地址: https://github.com/ChenYilong/iOS9AdaptationTips 【iOS9在定位的问题上,有一个坏消息一个好消息】坏消息:如果不适配iOS9,就不能偷偷在后台定位(不带蓝条,见图)!好消息:将允许出现这种场景:同一App中的多个location mana 阅读全文
posted @ 2016-02-15 14:51 大雨不晴 阅读(2163) 评论(0) 推荐(0) 编辑
摘要: iOS中文转成拼音。 oc: NSString *hanziText = @"中文转拼音"; if ([hanziText length]) { NSMutableString *ms = [[NSMutableString alloc] initWithString:hanziText]; if 阅读全文
posted @ 2016-02-02 10:05 大雨不晴 阅读(420) 评论(0) 推荐(0) 编辑
摘要: Xcode7.2 下载simulator9.1之后, playground报错 stackoverflow上的解决方法如下: 注意起始位置是 Macintosh HD 而不是 ~/Library 删除该目录下的所有 .simruntime 文件(为防止意外,删除之前请先备份这些文件) 我的处理方式是 阅读全文
posted @ 2016-01-27 16:59 大雨不晴 阅读(250) 评论(0) 推荐(0) 编辑
摘要: xcode7是支持3D Touch开发的,可是模拟器并不支持这个手势,我们只能在真机上进行学习与测试,但是github上有人为我们提供了这样的一个插件,可以让我们在模拟器上进行3D Touch的效果测试:地址: https://github.com/DeskConnect/SBShortcutMen... 阅读全文
posted @ 2016-01-21 10:47 大雨不晴 阅读(709) 评论(0) 推荐(0) 编辑
摘要: iOS停止UIView的block动画的方法动画执行如下:UIView.animateWithDuration(animationDuringTime, delay: 0, options: UIViewAnimationOptions.CurveLinear, animations: { [wea... 阅读全文
posted @ 2016-01-14 09:33 大雨不晴 阅读(8868) 评论(0) 推荐(0) 编辑
摘要: iOS中实现LED跑马灯效果 实现原理是使用scrollView, 将需要滚动的label添加两次到 scrollView的subView下面, 然后通过滚动scrollView来实现跑马灯效果。 具体实现代码如下: // // KMScrollLabel.swift // StopSmokingP 阅读全文
posted @ 2016-01-13 17:44 大雨不晴 阅读(2547) 评论(0) 推荐(0) 编辑
摘要: 修改UITextField的Placeholder字体颜色有一下两张方式可以达到效果。第一种:UIColor *color = [UIColor whiteColor];textfield.attributedPlaceholder = [[NSAttributedString alloc] ini... 阅读全文
posted @ 2016-01-13 16:44 大雨不晴 阅读(305) 评论(0) 推荐(0) 编辑