iOS11AdaptationTips icon indicating copy to clipboard operation
iOS11AdaptationTips copied to clipboard

for iOS11 in [ObjC, Swift, English, 中文] {...} -- iOS11适配系列教程

Results 22 iOS11AdaptationTips issues
Sort by recently updated
recently updated
newest added

## iOS官方灰度方案:Phased Release for Automatic Updates iTunes Connect v2 宣布支持:Phased Release 功能,全称 Phased Release for Automatic Updates (阶段性自动更新发布), 在提交审核通过后,上架当天为第一天,之后灰度比例依次递增: 天数| 百分比 -------------|------------- 第一天 | 1% 第二天 | 2% 第三天 |...

note

# iOS11开发新特性之实用小tips ## [DeviceCheck](https://developer.apple.com/documentation/devicecheck?language=objc) DeviceCheck 允许你通过你的服务器与 Apple 服务器通讯,并为单个设备设置两个 bit 的数据。 在设备上用 DeviceCheck API 生成一个 2字节的 token (00, 01,10,11),然后将这个 token 发给自己的服务器,再由自己的服务器与 Apple 的 API 进行通讯,来更新或者查询该设备的值。这两字节 的数据用来追踪用户。比如。借助两个自己的数据,你可以得知用户究竟使用了该 App 多久。 该 API 可以成为:反欺诈领域:...

note

# iOS11开发新特性之网络部分 ## 前言 网络优化技术进阶 为了给用户提供更好的用户体验,在网络优化和新技术使用方面,苹果一直都保持著很积极的态度,近两年也多次通过加强审核的方式大力推广 IPv6 和 https;每年的 WWDC 都有若干网络优化的 session,介绍和讨论新的网络技术和使用情况; 今年的 Advances in Networking 进一步分享了 ECN/IPV6/MPTCP 等几项技术带来的收益,以及苹果网络相关 API 的一些新特性; 主要内容: - ECN 显式拥塞通知 - IPv6支持 - Networking stack...

note

# iOS11开发新特性之停止支持32位APP iOS11 放弃支持 iPhone5、iPhone5c、iPad4 ,标志着在硬件层面,32位设备退出了历史舞台,iOS 系统不再兼容32位设备。 同时 iOS11 也将不再支持 32位 APP 运行, 32位 APP 在 APPStore 无法被搜到,已经下载的 APP 无法在 “已购”项目中安装。 iOS 11 只兼容 64-bit 设备,也就是搭载 A7 以上处理器的设备. 下面是 iOS...

note

# iOS11开发新特性之Xcode9 新特性 ## 功能更全的 Git 支持 在Xcode 9 中,引入了 GitHub 新源代码管理导航器 可以展示 branch 分支和 tag 标签。 ![](https://ws3.sinaimg.cn/large/006tNc79gy1fjxzs2l0uej31kw11nk8q.jpg) 双击对应 commit ![](https://ws1.sinaimg.cn/large/006tNc79gy1fjxzzngwxxj30rs0hbwno.jpg) 可以直接查看本次提交。 本次覆盖,基本涵盖 GitHub 官方客户端功能。 ## 创建新的颜色 asset catalog 创建新的颜色...

note

iOS 11 WKWebView provides APIs which work like NSURLProtocol in UIWebView, it's useful to WKWebView DNS pollution problem. New API `-[WKWebViewConfiguration setURLSchemeHandler:forURLScheme:]`,provide `WKURLSchemeHandler` to handle the request with your network...

# iOS11开发新特性之 WebKit 支持 WebRTC 协议 iOS 11 的 WebKit 中支持了 WebRTC 相关的接口: ![](https://ws4.sinaimg.cn/large/006tNc79gy1fjp0ig1bgij31800pg7bu.jpg) 不过 WKWebView 还没有支持 `getUserMedia` 无法获得 `MediaStream` ,无法传输音视频流,所以 APP 嵌套的 WebView 还无法使用 WebRTC,必须得用 Safrai APP 才可以。APPLE 回复说是会支持,估计得等几个版本了,可以持续关注后续...

note

This problem is based on iOS11 beta,the details are: the request: NSString *htmlPath = [[NSBundle mainBundle] pathForResource:@"xxx" ofType:@"html"]; NSMutableURLRequest * request = [[NSMutableURLRequest alloc]initWithURL:[NSURL URLWithString:htmlPath]]; [self.webView loadRequest:request]; pragma mark -...

## Summary 使用 xib 创建 tableView 的 header 的时候出现缺少20的距离 ## How would you classify this issue? Choose a problem area with iOS SDK: * [ ] Foundation * [x] UIKit...

bug
question

## [NEDNSProxyProvider](https://developer.apple.com/documentation/networkextension/nednsproxyprovider?language=objc) - [NEDNSProxyProviderProtocol](https://developer.apple.com/documentation/networkextension/nednsproxyproviderprotocol?language=objc) - [NEDNSProxyManager](https://developer.apple.com/documentation/networkextension/nednsproxymanager?language=objc) ![NEDNSProxyProvider feature in iOS11](https://ws4.sinaimg.cn/large/006tNbRwly1fgev48ttmkj31kw0vr404.jpg) Receives the system’s DNS query messages Handles them as it wishes Can send to recursive resolver of its choice Can...