What's New in iOS9 iOS9功能改进
What's New in iOS9
This article summarizes the key developer-related features introduced in iOS 9, which runs on currently shipping iOS devices. The article also lists the documents that describe new features in more detail.
For late-breaking news and information about known issues, see iOS 9 Release Notes. For the complete list of new APIs added in iOS 9, see iOS 9.0 API Diffs. For more information on new devices, see iOS Device Compatibility Reference.
Multitasking Enhancements for iPad
iOS 9 enhances the user’s multitasking experience on iPad with Slide Over, Split View, and Picture in Picture. The Slide Over feature lets users pick a secondary app and quickly interact with it. The Split View feature gives users the ability to use two apps side by side on iPad Air 2. The Picture in Picture feature (also known as PiP) lets users watch video in a window that floats above other onscreen apps.
Users decide when they want to view two apps on the screen at the same time; you have no control over when this happens. Even though Split View and Slide Over are user-controlled, there are a few things you need to do to ensure that users have a great multitasking experience.
- It’s crucial that your app use system resources efficiently so that it can run well when it shares the system with another running app. Under memory pressure, the system preemptively quits the app that’s consuming the most memory. For some guidance on creating energy efficient iOS apps that perform well, see Energy Efficiency Guide for iOS Apps.
- If you haven’t already, be sure to adopt size classes so that your app looks good when the user decides to view it in a portion of the device screen.
To learn more about preparing your app to respond well when users use Split View and Slide Over, see Adopting Multitasking Enhancements on iPad.
As with Split View and Slide Over, users control whether they want to use PiP to view a video on top of another running app. If video playback is not your app's primary functionality, there’s nothing you need to do to support the PiP experience.
To participate when users choose Picture in Picture, use AVKit or AV Foundation APIs. The video playback classes defined in the Media Player framework are deprecated in iOS 9 and do not support PiP. To learn how to prepare your video playback app for PiP, see Picture in Picture Quick Start.
多任务特性,iOS 9 中的多任务分为三种表现形式,分别是临时调出的滑动覆盖 (Slide Over),视频播放的画中画模式 (Picture in Picture) 以及真正的同时使用两个 app 的分割视图 (Split View)。现在能运行 iOS 9 的设备中只有最新的 iPad Air 2 支持分割视图方式,但是相信随着设备的更新,分割视图的使用方式很可能成为人们日常使用 iPad 的一种主流方式,因此提早进行准备是开发者们的必修功课。
虽然第一眼看上去感觉要支持多任务的视图会是一件非常复杂的事情,但是实际上如果你在前一年就紧跟 Apple 步伐的话,就很简单了。滑动覆盖和分割视图的 app 会使用 iOS 8 引入的 Size Class 中的 Compact Width 和 Regular Height 的设定,配合上 AutoLayout 来进行布局。也就是说,如果你的 app 之前就是 iPhone 和 iPad 通用的,并且已经使用了 Size Class 进行布局的话,基本上你不需要再额外做什么事儿就已经能支持 iOS 9 的多任务视图了。但是如果不幸你还没有使用这些技术的话,可能你会需要尽快迁移到这套布局方式中,才能完美支持了。
视频 app 的画中画模式相对简单一些,如果你使用 AVPlayerViewController 或者 AVPlayerLayer 来播放视频的话,那什么都不用做就已经支持了。但如果你之前选择的方案是 MPMoviePlayerController 或者 MPMoviePlayerViewController 的话,你可能也需要尽早迁移到 AVKit 的框架下来,因为 Media Player 将在 iOS 9 被标记为 deprecated 并不再继续维护。
Search
Search in iOS 9 gives users great new ways to access information inside of your app, even when it isn’t installed. When you make your content searchable, users can access activities and content deep within your app through Spotlight and Safari search results, Handoff, and Siri suggestions. Using APIs related to search, you decide what content gets indexed, what information to show in search results, and where the user is redirected after tapping a result from your app or website.
Integrating with search in iOS 9 is easy: You don’t need any prior experience with implementing search, and most developers find that it takes only a few hours to make their content universally searchable. To learn how to make your app and website content searchable, seeApp Search Programming Guide.
Privacy is an essential feature of search in iOS 9. To give users the best search experience while protecting their private data, iOS 9 makes the following indexes available:
- A private on-device index. Each device contains a private index whose information is never shared with Apple or synced between devices. When you make an item available in a user’s on-device index, only that user can view the item in search results.
- Apple’s server-side index. The server-side index stores only publicly available data that you’ve marked appropriately on your website.
iOS 9 provides the following APIs to help you make your content searchable:
- The NSUserActivity class includes new methods and properties that help you index items as users perform activities in your app such as visiting a navigation point or creating and viewing content. Just about every app can take advantage of the NSUserActivity APIs to make useful content available to users.
- The Core Spotlight framework (CoreSpotlight.framework) provides APIs that help you add app-specific content to the on-device index and enable deep links into your app. To learn more about Core Spotlight APIs, see Core Spotlight Framework Reference.
- Web markup lets you make your related web content searchable and helps you enrich the user’s search experience. To learn how to mark up your website, see Mark Up Web Content.In addition, adding a Smart App Banner gives users an easy way to link directly to your app (to learn how to use a Smart App Banner, see Promoting Apps with Smart App Banners).
- Universal links let you replace custom URL schemes with standard HTTP or HTTPS links. Universal links work for all users: If users have your app installed, the link takes them directly into your app; if they don’t have your app installed, the link opens your website in Safari. To learn more about universal links, see Support Universal Links.
主要是spotlight开放了部分api,可以搜索app中的内容。
Gaming
iOS 9 includes several technology improvements that make it easier than ever to implement your game’s graphics and audio features. Take advantage of high-level frameworks for ease-of-development, or use new low-level enhancements to harness the power of the GPU.
GameplayKit
The GameplayKit framework (GameplayKit.framework) provides foundational technologies for building games. Use GameplayKit to develop gameplay mechanics, and combine it with any high-level graphics engine—such as SceneKit or SpriteKit—to build a complete game. This framework provides building blocks for creating games with modular architecture, including:
- Randomization tools for adding unpredictability to gameplay without compromising debugging
- Entity-component architecture to design gameplay code for better reusability
- State machines for untangling complex procedural code in gameplay systems
GameplayKit also includes standard implementations of common gameplay algorithms, so you can spend less time reading white papers and more time working on the mechanics that make your game unique. Several of the standard algorithm implementations in GameplayKit are listed below.
- A minmax artificial intelligence for adversarial turn-based games.
- An agent simulation that lets you describe movement behaviors in terms of high-level goals to be automatically pursued.
- Rule systems for building data-driven game logic, fuzzy reasoning, and emergent behavior.
To learn more about GameplayKit, see GameplayKit Programming Guide and GameplayKit Framework Reference. To see GameplayKit in action, download the sample code projects FourInARow: Using the GameplayKit Minmax Strategist for Opponent AI, AgentsCatalog: Using the Agents System in GameplayKit, and DemoBots: Building a Cross Platform Game with SpriteKit and GameplayKit.
游戏类,忽略
Model I/O
The Model I/O framework (ModelIO.framework) provides a system-level understanding of 3D model assets and related resources. You can use this framework for several types of tasks, such as:
- Importing mesh data, material descriptions, lighting and camera settings, and other scene information from file formats used by popular authoring software and game engines
- Processing or generating such data—for example, to bake lighting information into a mesh, or create procedural sky textures
- Together with MetalKit, GLKit, or SceneKit APIs, efficiently loading asset data into GPU buffers for rendering
- Exporting processed or generated asset data to any of several file formats
To learn more about Model I/O, see Model I/O Framework Reference.
游戏类,忽略
MetalKit
The MetalKit framework (MetalKit.framework) provides a set of utility functions and classes that reduce the effort required to create a Metal app. MetalKit provides development support for three key areas:
- Texture loading helps your app easily and asynchronously load textures from a variety of sources. Common file formats such as PNG and JPEG are supported, as well as texture-specific formats such as KTX and PVR.
- Model handling provides Metal-specific functionality that makes it easy to interface with Model I/O assets. Use these highly-optimized functions and objects to transfer data efficiently between Model I/O meshes and Metal buffers.
- View management provides a standard implementation of a Metal view that drastically reduces the amount of code needed to create a graphics-rendering app.
To learn more about MetalKit APIs, see MetalKit Framework Reference. For more information about Metal in general, see Metal Programming Guide, Metal Framework Reference, and Metal Shading Language Guide.
游戏类,忽略
Metal Performance Shaders
The Metal Performance Shaders framework (MetalPerformanceShaders.framework) provides highly-optimized compute and graphics shaders that are designed to integrate easily and efficiently into your Metal app. These data-parallel shaders are specially tuned to take advantage of the unique hardware characteristics of each Metal-supported iOS GPU.
Use the Metal Performance Shader classes to achieve optimal performance for all supported hardware, without having to target or update your shader code to specific iOS GPU families. MetalPerformanceShader objects fit seamlessly into your Metal apps and can be used with Metal resource objects such as buffers and textures.
Common shaders provided by the Metal Performance Shader framework include:
- Gaussian blur—provided by the MPSImageGaussianBlur class.
- Image histogram—provided by the MPSImageHistogram class.
- Sobel edge detection—provided by the MPSImageSobel class.
New Features in Metal
The Metal framework (Metal.framework) adds new features to make your graphics-rendering apps look even better and be more performant. These features include:
- Improvements to the Metal Shading Language and Metal Standard Library
- Compute shaders can now write to a wider range of pixel formats
- The addition of private and depth stencil textures to align with OS X
- The addition of depth clamping and separate front and back stencil reference values for improved shadow quality
游戏类,忽略
New Features in SceneKit
The SceneKit framework (SceneKit.framework) includes new features in iOS 9, including:
- Metal rendering support. See the SCNView and SCNSceneRenderer classes to enable high-performance Metal rendering on supported devices.
- A new Scene Editor in Xcode. Build games and interactive 3D apps in less time and with less code by designing scenes in Xcode (for a related sample code project, download Fox: Building a SceneKit Game with the Xcode Scene Editor).
- Positional audio. See the SCNAudioPlayer and SCNNode classes to add spatial audio effects that automatically track the listener’s position in a scene.
For details on these and many other new features, see SceneKit Framework Reference.
New Features in SpriteKit
The SpriteKit framework (SpriteKit.framework) includes new features in iOS 9, such as:
- Metal rendering support. On devices that support Metal, metal rendering is automatically used, even in cases where you are using custom OpenGL ES shaders.
- An improved Scene Editor and a new Action Editor in Xcode. Build games and interactive 2D apps in less time and with less code by designing scenes in Xcode (for a related sample project, download DemoBots: Building a Cross Platform Game with SpriteKit and GameplayKit.)
- Camera nodes (that is, SKCameraNode objects) make it even easier to create scrolling games. Simply drop a camera node into your scene and set the scene’s camera property.
- Positional audio. To learn how to add spatial audio effects that automatically track the listener’s position in a scene, see SKAudioNode Class Reference.
For details on these and many other new features, see SpriteKit Framework Reference.
游戏类,忽略
App Thinning
App thinning helps you develop apps for diverse platforms and deliver an optimized installation automatically. App thinning includes the following elements:
- Slicing. Artwork incorporated into the Asset Catalog and tagged for a platform allows the App Store to deliver only what is needed for installation.
- On-Demand Resources. Host additional content for your app in the iTunes App Store repository, allowing it to fetch resources as needed using asynchronous download and installation. To learn more about this technology, see On-Demand Resources Guide.
- Bitcode. Archive your app for submission to the App Store in an intermediate representation, which is compiled into 64- or 32-bit executables for the target devices when delivered.
To learn more about app thinning, see App Thinning (iOS, watchOS).
1、仅选择需要的内容 (Slicing) 下载。对于开发者来说,并没有太多要做的事情,只需要使用 asset catalog 来管理素材标记 2x 3x 就可以了。
2、按需加载资源,提供附加内容给Appstore服务器,在需要时,异步下载和安装需要的资源。
3、给 App 瘦身的另一个手段是提交 Bitcode 给 Apple,而不是最终的二进制。Bitcode 是 LLVM 的中间码,在编译器更新时,Apple 可以用你之前提交的 Bitcode 进行优化,这样你就不必在编译器更新后再次提交你的 app,也能享受到编译器改进所带来的好处。Bitcode 支持在新项目中是默认开启的,没有特别理由的话,你也不需要将它特意关掉。
按需加载的资源,这可能在游戏中应用场景会多一些。你可以用 tag 来组织像图像或者声音这样的资源,比如把它们标记为 level1,level2 这样。然后一开始只需要下载 level1 的内容,在玩的过程中再去下载 level2。或者也可以通过这个来推后下载那些需要内购才能获得的资源文件。在一些大型游戏里这是很常见的优化方法,现在在 iOS 9 里也可以方便地使用了。
Support for Right-to-Left Languages
iOS 9 brings comprehensive support for right-to-left languages, which makes it easier for you to provide a flipped user interface. For example:
- Standard UIKit controls automatically flip in a right-to-left context.
- UIView defines semantic content attributes that let you specify how particular views should appear in a right-to-left context.
- UIImage adds the imageFlippedForRightToLeftLayoutDirection method, which makes it easy to flip an image programmatically when appropriate.
To learn more about providing a flipped user interface, see Supporting Right-to-Left Languages.
支持从右向左显示的语言格式。
App Transport Security
App Transport Security (ATS) enforces best practices in the secure connections between an app and its back end. ATS prevents accidental disclosure, provides secure default behavior, and is easy to adopt; it is also on by default in iOS 9 and OS X v10.11. You should adopt ATS as soon as possible, regardless of whether you’re creating a new app or updating an existing one.
If you’re developing a new app, you should use HTTPS exclusively. If you have an existing app, you should use HTTPS as much as you can right now, and create a plan for migrating the rest of your app as soon as possible. In addition, your communication through higher-level APIs needs to be encrypted using TLS version 1.2 with forward secrecy. If you try to make a connection that doesn't follow this requirement, an error is thrown. If your app needs to make a request to an insecure domain, you have to specify this domain in your app'sInfo.plist file.
默认Https连接方式进行更安全的网络通信。
Extension Points
iOS 9 introduces several new extension points (an extension point defines usage policies and provides APIs to use when you create an app extension for that area). Specifically:
- Network extension points:
- Use the Packet Tunnel Provider extension point to implement the client side of a custom VPN tunneling protocol.
- Use the App Proxy Provider extension point to implement the client side of a custom transparent network proxy protocol.
- Use the Filter Data Provider and the Filter Control Provider extension points to implement dynamic, on-device network content filtering.
- Each of the network extension points requires special permission from Apple.
- Safari extension points:
- Use the Shared Links extension point to enable users to see your content in Safari's Shared Links.
- Use the Content Blocking extension point to give Safari a block list describing the content that you want to block while your users are browsing the web.
- The Index Maintenance extension point to support the reindexing of app data without launching the app.
- The Audio Unit extension point allows your app to provide musical instruments, audio effects, sound generators, and more for use within apps like GarageBand, Logic, and other Audio Unit host apps. The extension point also brings a full audio plug-in model to iOS and lets you sell Audio Units on the App Store.
To learn more about creating app extensions in general, see App Extension Programming Guide.
Extension 增加新功能
Network extension增加:
1、使用Packet Tunnel Provider extension可以实现自定义VPN代理。
2、使用App Proxy Provider extension实现完全透明的网络代理。
3、使用Filter Data Provider and the Filter Control Provider extension 实现动态内容过滤。
以上所有Network extension功能需要从系统获取权限。
Safari extension 增加:
1、使用Shared Links extension 时,用户可以在Safari的“共享连接”里面看到你的内容。
2、使用Content Blocking extension时,当你的用户正在访问网页时,可以给Safari一个阻碍列表,实现控制内容显示。 如Safari广告过滤。
Index Maintenance extension 支持不启动App就能搜素App的内容。
Audio Unit extension 允许开发者的App提供音频工具、资源、声效等,不需要使用GarageBand, Logic这样的专业App。这个extension 给音频处理带来了一个新形式。
Contacts and Contacts UI
iOS 9 introduces the Contacts and Contacts UI frameworks (Contacts.framework and ContactsUI.framework), which provide modern object-oriented replacements for the Address Book and Address Book UI frameworks. To learn more, see Contacts Framework Referenceand ContactsUI Framework Reference.
联系人框架 Address Book and Address Book UI frameworks过时,以后使用新版本的Contacts and Contacts UI frameworks。
Watch Connectivity
The Watch Connectivity framework (WatchConnectivity.framework) provides two-way communication between an iPhone and a paired Apple Watch. Use this framework to coordinate activities between your iOS app and your corresponding Watch app. The framework supports immediate messaging between the apps when they are both running, and background messaging in other cases. To learn more, see Watch Connectivity Framework Reference.
Keychain
The keychain provides more item protection options and a new type of encryption keys owned by the secure enclave. Specifically:
- New constraints for access control lists that allow creating constraints with Touch ID only or passcode only.
- A new Touch ID constraint that invalidates keychain items when a fingerprint is added or removed.
- Support for app-provided entropy for keychain item encryption using the Application Password option of the access control list.
- Support for an authentication context that lets you invoke the authentication separately from SecItem calls.
- Support for keys generated and used inside the secure enclave using the kSecAttrTokenIDSecureEnclave attribute. Note that access to these keys can be controlled by all constraints supported by access control lists.
keychain 钥匙串数据存储,提供了更多的数据保护方式,和一种只有使用者掌握的新的加密密钥。
1、新的访问列表安全限制,创建约束必须有TouchID 或者密码。
2、新的TouchID安全限制,当指纹添加或修改时,会使钥匙串数据失效。
3、支持使用访问控制列表中App自己设置的密码,加密钥匙串数据。
4、支持使用单独的授权会话,与普通的SecItem钥匙串数据对象分开。
5、支持生成密钥并且只在使用kSecAttrTokenIDSecureEnclave属性的安全环境下使用,注意访问这些密钥,也受访问访问控制列表的约束。
Swift Enhancements
To learn about what’s new in Swift, see Swift Language.
Additional Framework Changes
In addition to the major changes described above, iOS 9 includes many other improvements.
AV Foundation Framework
The AV Foundation framework (AVFoundation.framework) adds new AVSpeechSynthesisVoice API that lets you specify a voice by identifier, instead of by language. You can also use the name and quality properties to get information about a voice.
AVSpeechSynthesisVoice ,可以用来给声音加标志位, 而不是之前的语言。你也可以获取一个声音信息里面的名字和质量。
AVKit Framework
The AVKit framework (AVKit.framework) includes the AVPictureInPictureController and AVPlayerViewController classes, which help you participate in Picture in Picture. For more information about Picture in Picture, see Multitasking Enhancements for iPad.
增加画中画相关的API。
CloudKit Framework
If you have a CloudKit app, you can use CloudKit web services or CloudKit JS, a JavaScript library, to provide a web interface for users to access the same data as your app. You must have the schema for your databases already created to use a web interface to fetch, create, update, and delete records, zones, and subscriptions. For more information, see CloudKit JS Reference, CloudKit Web Services Reference, and CloudKit Catalog: An Introduction to CloudKit (Cocoa and JavaScript).
对于使用iCloud 数据存储的App,可以在App里面,通过网页接口访问存储的数据。 也可以通过App里面知晓的结构,通过网页接口对iCoud数据增删改查。
Foundation Framework
The Foundation framework (Foundation.framework) includes the following enhancements:
- APIs for on-demand loading of NSBundle resources.
- Strings file support for context-dependent variable width strings.
- NSProcessInfo APIs for power and thermal management.
Foundation framework 扩展
1、按需加载资源的相关API
2、字符文件,支持与上下文相关的大量宽度文本。
3、NSProcessInfo 接口里面增加电源接口和散热管理。
HealthKit Framework
The HealthKit framework (HealthKit.framework) includes the following enhancements:
- New support for tracking areas such as reproductive health and UV exposure. To learn about the new constants that describe characteristics, quantities, and other items, see HealthKit Constants Reference.
- New support for bulk-deleting entries and tracking deleted entries. For more information, see HKDeletedObject, HKAnchoredObjectQuery, and the deleteObjects:withCompletion: and deleteObjectsOfType:predicate:withCompletion: methods inHKHealthStore Class Reference.
健康框架
Local Authentication Framework
The Local Authentication framework (LocalAuthentication.framework) includes the following enhancements:
- The ability to get a representation of the current set of enrolled fingers so that apps can change behavior when a finger is enrolled or removed.
- Support for canceling a user prompt from code.
- Support for evaluating keychain access control lists and the use of an authentication context in keychain calls.
- Support for reusable Touch ID matches. A match from the previous phone unlock can be used by evaluateAccessControl: and evaluatePolicy:localizedReason:reply:.
本地授权框架:
1、当指纹登记和移除时,App可以得到变化通知,修改相关内容。
2、支持取消代码提示框。
3、支持在钥匙串里面,管理钥匙串访问控制列表,和授权访问会话。
4、支持touchID 重复匹配。 有电话通知时,可以用evaluateAccessControl和 evaluatePolicy:localizedReason:reply:方法,实现touchID解锁。
MapKit Framework
The MapKit framework (MapKit.framework) includes several additions that help you provide a richer user experience. Specifically:
- MapKit supports querying transit ETAs and launching Maps into transit directions.
- Map views support a 3D flyover mode.
- Annotations can be fully customized.
- Search results for MapKit and CLGeocoder can provide a time zone for the result.
1、支持查询路经地点,和启动地图App进入地点方向。
2、支持3D显示。
3、可以完全自定义地图元素。
4、MapKit和GLGEocoder的搜索结果,可以同时知道结果对应的时区。
PassKit Framework
The PassKit framework (PassKit.framework) includes several additions that support enhancements in Apple Pay. Specifically:
- In iOS 9, Apple Pay supports Discover cards and store debit and credit cards. For more information, see “Payment Networks” in PKPaymentRequest Class Reference.
- Card issuers and payment networks can add cards to Apple Pay directly in their apps. For more information, see PKAddPaymentPassViewController Class Reference.
iOS9里面,Apple Pay 支持发现卡、商店借记卡、信用卡.
Safari Services Framework
The Safari Services framework (SafariServices.framework) includes the following enhancement.
SFSafariViewController can be used to display web content within your app. It shares cookies and other website data with Safari, and has many of Safari's great features, such as Safari AutoFill and Safari Reader. Unlike Safari itself, the SFSafariViewController UI is tailored for displaying a single page, featuring a Done button that takes users back to where they were in your app.
If your app displays web content, but does not customize that content, consider replacing your WKWebView or UIWebView-based browsers with SFSafariViewController.
Safari Services Framework。这个东西非常屌,当你的app需要展示一个WebView又不需要太多定制的时候,用它来替换掉你现在在用的UIWebView或者WKWebView。他可以让Safari以一个Controller的形式加载你的网页,和系统的Safari完全共享Cookie和Autofill等特性,最重要的,Safari的JavaScript引擎。
UIKit Framework
The UIKit framework (UIKit.framework) includes many enhancements, such as:
- The UIStackView class, which helps you manage a set of subviews as a stack that can be arranged vertically or horizontally.
- New layout anchors in UIView (such as leadingAnchor and widthAnchor), NSLayoutAnchor, and NSLayoutDimension, all of which help make layout easy.
- New layout guides that help you adopt readable content margins and define where within a view the content should draw. For more information, see UILayoutGuide.
- A new UIApplicationDelegate method you can use to open a document (and modify it) in place, instead of working with a copy of the document. To support the open-in-place functionality, an app also adds to its Info.plist file theLSSupportsOpeningDocumentsInPlace key with a value of YES.
- The UITextInputAssistantItem class, which helps you lay out bar button groups in the shortcuts bar.
- Enhancements to touch events, such as the ability to get access to intermediate touches that may have occurred since the last refresh of the display and touch prediction.
- Enhancements to UIKit Dynamics, such as support for nonrectangular collision bounds, the new UIFieldBehavior class, which supports various field types in addition to being customizable, and additional attachment types in UIAttachmentBehavior.
- The new behavior property in UIUserNotificationAction, which lets you support text input from users in notifications.
- The new NSDataAsset class, which makes it easy to fetch content tailored to the memory and graphics capabilities of your device.
- All standard UIKit controls flip appropriately to support right-to-left languages. In addition, navigation, gestures, collection views, and table cell layouts also flip appropriately.
1、UIStackView类,用来帮助管理一系列的子视图,可以水平布局和垂直方向布局。
2、UIView 布局增加新的锚点(leadingAnchor and widthAnchor), NSLayoutAnchor, and NSLayoutDimension,可以帮助更加方便的布局。
3、新的布局指导,帮助你控制只读的内容和需要绘制的内容。
4、新的UIApplicationDelegate方法,你可以用来打开或者修改一个文档,而不是打开文档的副本。要支持这个功能,在Info.plist 文件中把LSSupportsOpeningDocumentsInPlace 属性设为YES。
- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<NSString*, id> *)options NS_AVAILABLE_IOS(9_0); // no equiv. notification. return NO if the application can't open for some reason
5、UITextInputAssistantItem 类, 帮助你布局工具栏上的按钮。
6、touch 事件增强,例如,拿到从上次刷新界面到这一次触摸事件中间的所有触摸动作。
7、UIKit 动力学,如增强支持非矩形的边界。 新的UIFieldBehavior 类,支持更多可以自定义的区域类型,和追加的UIAttachmentBehavior的附件类型。
8、UIUserNotificationAction 推送通知的答复动作,支持像短信一样的直接输入文本回复。
9、新的NSDataAsset类, 可以更简单的从内存和屏幕上获取需要的内容。
10、所有标准的UI控件,支持从右到左显示的语言形式。 同时,导航栏、手势、collection views、表格也能合适的翻转。
Deprecated APIs
The following APIs are deprecated:
- The Address Book and Address Book UI frameworks. Use the Contacts and Contacts UI frameworks instead.
- The NSURLConnection API in the Foundation framework. Use NSURLSession APIs instead.
过期API
1、Address Book and Address Book UI frameworks 过期,用Contacts and Contacts UI frameworks 代替。
2、NSURLConnection 过期,用NSURLSession代替。 NSURLSession就是我们新缓存使用的技术方案,苹果强制开发者往新技术转变了。
What's New in iOS9 iOS9功能改进的更多相关文章
- 教你轻松看懂 iOS9 新功能
2015苹果全球开发者大会在6月9日凌晨,美国旧金山举行,fir.im 整理了一部分的资料,帮助了解 iOS9 的新特性与功能,感兴趣的可以看下. 关于iOS9新增功能 在WWDC 2015上苹果介绍 ...
- [功能改进]Live Writer发博支持“建分类、加标签、写摘要”
以前您在园子里用Windows Live Wirter发布博文是不是有以下三个不爽: 不爽1:如果想在发布随笔时新建分类并将随笔添加至该分类,需要先在博客后台添加分类,然后在Live Writer中刷 ...
- PHP 5.6正式发布:新特性、及功能改进介绍
经过了长时间的开发测试,新版本PHP程序(PHP5.6正式版)终于发布了.新版本中加入了一些实用的新特性,也摒弃了一些冗余的功能.同时,也对部分原有功能进行了改进.下面就一起看看PHP 5.6正式版到 ...
- 王者荣耀交流协会互评Beta版本及答复功能改进建议、Bug修正
互评Beta版本 欢迎来怼团队博客园安卓APP Thunder团队爱阅app 探路者团队贪吃蛇 Hello World!团队项目空天猎 答复功能改进建议 答复其他各组给出的“就现有技术和工作量,不改变 ...
- “四则运算生成程序——GUI支持和部分功能改进”链接
项目成员:张金生 张政 <正文随笔发布在张金生博客中> 四则运算生成程序——GUI支持和部分功能改进
- iOS9 新功能:Support Universal Links
先看官方文档:https://developer.apple.com/library/ios/documentation/General/Conceptual/AppSearch/UniversalL ...
- iOS9 新功能:Support Universal Links,iOS10 openUrl新函数
先看官方文档:https://developer.apple.com/library/ios/documentation/General/Conceptual/AppSearch/UniversalL ...
- nopCommerce 3.3正式发布及新增功能改进
nopCommerce是一套优秀开源且基于Asp.net MVC的开源商城系统,nopCommerce 3.x经历长时间多个版本重构优化改进,目前已经趋于完善与成熟! nopCommerce 3.3正 ...
- C#.NET 大型通用信息化系统集成快速开发平台 4.1 版本 - 即时消息提醒功能改进
可以给自己的信息管理系统增加一些即时消息提醒功能,简单方便,一般是一行代码就可以发送提醒信息了,方便二次开发,个性化改进. 1:可以用简拼,快速查找内部员工. 2:双击直接可以发QQ消息. 3:双击直 ...
随机推荐
- How Delete File with Readonly Permission?
class Program { static void Main(string[] args) { string file=@"E:\readme.txt"; try { File ...
- 理解assign,copy,retain变strong
举个例子: NSString *houseOfMM = [[NSString alloc] initWithString:'装梵几的三室两厅']; 上面一段代码会执行以下两个动作: 1 在堆上分配一 ...
- Web API 简单示例
一.RESTful和Web API Representational State Transfer (REST) is a software architecture style consisting ...
- JQuery文本框水印插件的简单实现
采用JQuery实现文本框的水印效果非常容易,效果如下: 代码片段,定义要应用水印效果的文本框的样式: .watermark { color: #cccccc; } 将JavaScript代码封装成J ...
- [BTS] Deploy Command
BizTalkDeploymentTools.AddResource.bat @Echo OFF SET ApplicationName=%~1 SET ComponentType=%~2 SET C ...
- Java关系操作符简写
eq--等于.neq--不等于.lt--小于.lte--小于等于.gt--大于.gte--大于等于.empty.null
- Ubuntu命令--CURL用法
curl命令是个功能强大的网络工具,支持通过http.ftp等方式下载文件.上传文件.还可以用来抓取网页.网络监控等方面的开发,解决开发过程中遇到的问题. 常用参数curl命令参数很多,这里只列出我曾 ...
- iOS-OC内存管理
目标 1.[理解]内存管理 2.[掌握]第一个MRC程序 3.[掌握]内存管理的原则 4.[理解]野指针与僵尸对象 5.[理解]单个对象的内存管理 6.[理解]多个对象的内存管理 7.[掌握]set方 ...
- Python之Web框架们
Python的WEB框架 Bottle Bottle是一个快速.简洁.轻量级的基于WSIG的微型Web框架,此框架只由一个 .py 文件,除了Python的标准库外,其不依赖任何其他模块. pip i ...
- scrollTop 鼠标往下移动到一定位置显示隐藏
<div class="mouse_scroll"> <img src="./mouse.png"></div> & ...