转载自:iOS 9 通用链接(Universal Links)
最近老大要求在App里加这个功能,于是乎就研究了一下。
网上可以参考的文章很多,比如:
2.Cocoachina:iOS 9学习系列:打通 iOS 9 的通用链接(Universal Links)
建议看官方文档,上面会有很多注意事项。其他都差不多,这里只总结下需要注意的点:
1.apple-app-site-association文件不能带后缀,务必把".[......]
转载自:iOS 9 通用链接(Universal Links)
最近老大要求在App里加这个功能,于是乎就研究了一下。
网上可以参考的文章很多,比如:
2.Cocoachina:iOS 9学习系列:打通 iOS 9 的通用链接(Universal Links)
建议看官方文档,上面会有很多注意事项。其他都差不多,这里只总结下需要注意的点:
1.apple-app-site-association文件不能带后缀,务必把".[......]
转载自:http://www.jianshu.com/p/390d3321b4c0
1. iPhone尺寸规格
2. 单位inch(英寸)
1 inch = 2.54cm = 25.4mm
3. iPhone手机宽高
上表中的宽高(width/height)为手机的物理尺寸,包括显示屏和边框。
以下为iPhone4s的宽高示意图:
4. 屏幕尺寸
我们通常所说的iPhone5屏幕尺寸为4英寸、iPhone6屏幕[......]
传送门:http://stackoverflow.com/questions/4564621/aligning-text-and-image-on-uibutton-with-imageedgeinsets-and-titleedgeinsets
可以这么搞:
@implementation UIButton(ImageTitleCentering)
-(void) centerButtonAndImageWithSpacing:(CGFloat)spacing {
CG[......]
// 这个是默认的
textView.dataDetectorTypes = UIDataDetectorTypeAll;
// 保留电话和链接
textView.dataDetectorTypes = UIDataDetectorTypeLink | UIDataDetectorTypePhoneNumber;
[......]
import UIKit
class ExtendableAreaButton: UIButton {
var hitOffset = UIEdgeInsetsZero
override func pointInside(point: CGPoint, withEvent event: UIEvent?) -> Bool {
guard hitOffset != UIEdgeInsetsZero && enabled &a[......]