본문 바로가기

공지사항

UDID 등록 신청 전 반드시 읽어보시기 바랍니다.

쓰기

(10/8) iOS 8.1 베타 2가 공개되었습니다.

관리팀 2014.10.08 03:00 조회 수 : 10880

금일 새벽 2시에 베타 2가 공개되었습니다.


베타 2는 다수의 개선점을 포함하고 있으며, 배터리와 와이파이 버그 해결, 작동의 안정화 등을 포함합니다.


아래에 릴리즈 노트를 첨부합니다.


iOS Developer Library DeveloperSearch
iOS 8 Release Notes
iOS SDK Release Notes for iOS 8.1 Beta

Contents:

Introduction
Bug Reporting
Notes and Known Issues
Introduction
iOS SDK 8.1 provides support for developing iOS apps. It is packaged with a complete set of Xcode tools, compilers, and frameworks for creating apps for iOS and OS X. These tools include the Xcode IDE and the Instruments analysis tool, among many others.
With this software you can develop apps for iPhone, iPad, or iPod touch running iOS 8. You can also test your apps using the included iOS Simulator, which supports iOS 8. iOS SDK 8.1 requires a Mac computer running OS X v10.9.4 (Mavericks) or later.
This version of iOS is intended for installation only on devices registered with the Apple Developer Program. Attempting to install this version of iOS in an unauthorized manner could put your device in an unusable state.
For more information and additional support resources, visit http://developer.apple.com/programs/ios/.
Bug Reporting
For issues not mentioned in the Notes and Known Issues section, please file bugs through the Apple Developer website (https://developer.apple.com/bug-reporting/ios/). Additionally, you may discuss these issues and iOS SDK 8.1 in the Apple Developer Forums: http://devforums.apple.com. To get more information about iCloud for Developers, go to http://developer.apple.com/icloud.
Notes and Known Issues
The following issues relate to using iOS SDK 8.1 to develop code.
AVCapture
Known Issue
Use of the new constant, AVCaptureISOCurrent, will result in inconsistent ISO values (as observed on the ISO property) if setExposureModeCustomWithDuration:ISO:completionHandler: is called repeatedly.
CloudKit
Note
A single CKAsset instance can no longer be set as a value on multiple CKRecords.
Contacts
Note
The Address Book UI people picker has been changed for iOS 8. A new mode with new API has been added where the app does not need access to the user’s contacts and the user will not be prompted for access. A temporary copy of the selected person is returned to the app. See ABPeoplePickerNavigationController.h for more details.
See the new PeoplePicker: Picking a Person or Property sample project demonstrating usage of the new mode.
Document Providers
Notes
Your app needs the iCloud entitlement to be able to be used as a document provider.
The com.apple.developer.icloud-container-identifiers entitlement will be required when iOS 8 is released.
Known Issues
After rotating document picker to landscape, the status bar is hidden.
Upon bringing up document picker in landscape, the containing view may be shifted beneath the navigation bar.
Extensions
Notes
Extensions need an arm64 slice to run on 64-bit devices. If you try to run the armv7 slice on a 64-bit device it won’t work.
Apps need to have an arm64 slice if the bundle contains a framework that both the app and the app extension link against.
File System
Note
The file system layout of app containers has changed on disk. Rather than relying on hard-coded directory structure, use the NSSearchPathForDirectoriesInDomains function or the URLForDirectory:inDomain:appropriateForURL:create:error: method of the NSFileManager class. See Accessing Files and Directories in File System Programming Guide.

Fonts
Note
The Thai system font has increased in size to improve readability. This will cause clipping in many places in your UI if you don’t take appropriate action:
Use UILabel as much as possible. If you use Interface Builder, make sure that Clip Subviews is not checked. UIKit will grow the clipping region as necessary to not clip text.
Use Dynamic Type. This will ensure that you do not have overlapping glyphs in multiline labels or text fields.
If you can’t do 1 and 2 because you implement your own views, you must implement measures not to clip. You can use CoreText to figure out the appropriate clipping region for a line of text by calling:
CTLineGetBoundsWithOptions(lineRef, kCTLineBoundsIncludeLanguageExtents);
To avoid overlapping glyphs in multiline text elements, adjust the line height. An additional 30% is recommended.
This measure will also help your app perform better in other languages, including Arabic, Hindi, and Vietnamese.
GameController
Fixed in iOS 8.1 Beta
GameController forwarding may not work.

HealthKit
Note
Code that attempts to read workout information in HealthKit may be unable to make subsequent queries to HealthKit.
If you are using HKWorkouts you should avoid reading workouts when running on iOS versions prior to 8.1 with:
NSOperatingSystemVersion ios8_1_0 = (NSOperatingSystemVersion){8, 1, 0};
if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:ios8_1_0]) {
// Read and write workout information to health kit.
} else {
// Write workout information to health kit
}
Fixed in iOS 8.1 Beta
Background delivery of HealthKit data does not work as expected.
iCloud
Note
Mail handoff and AirDrop may stop working after changing your iCloud password at appleid.apple.com.
Workaround: Sign out and back into iCloud on the device.
iCloud Backup
Known Issue
After restoring from iCloud backup you may be unable to sync new music or movie content from iTunes.
iCloud Drive
Note
URLForUbiquityContainerIdentifier: might return nil when running your application in Xcode. If so, open System Preferences, navigate to iCloud > iCloud Drive, and enable Xcode.
iCloud Keychain
Fixed in iOS 8.1 Beta
When logging into iCloud, a user may experience a keychain reset on their other devices that were previously in the circle.
Touch ID protected keychain items do not allow SecItemUpdate. SecItemUpdate always returns errSecInteractionNotAllowed.
Keyboards
Fixed in iOS 8.1 Beta
Network access gets disabled after adding a new keyboard from the same bundle.
Custom Keyboards may go blank after app switching.
Known Issue
3rd party keyboards may not appear in Safari, Maps or 3rd party apps on the Simulator.
Workaround: Keyboards should be testable in Calendar, Spotlight, Contacts, and Photos.
Mail
Fixed in iOS 8.1 Beta
Applying the Allow Account Modification restriction to a device with no mail accounts configured will still allow a user to create a Mail account by launching the Mail app.
Metal
Fixed in iOS 8.1 Beta
When you modify a metal file shader using offline compilation to create a metallib library that has shrunk in size, the metallib library will fail to load on the device.
Workaround: Delete the metallib library before recreating it by doing a clean in Xcode or removing the file manually before building the archive.

Notification Center
Note
The schedule and intended use of widgetPerformUpdateWithCompletionHandler: is intended as a convenient home for all data/model update logic. If implemented, the system will call at opportune times for the widget to update its state, both when Notification Center is visible, as well as in the background. An implementation is required to enable background updates. It’s expected that the widget will perform the work to update asynchronously and off the main thread as much as possible. Widgets should call the argument block when the work is complete, passing the appropriate NCUpdateResult. Widgets should NOT block returning from viewWillAppear: on the results of this operation. Instead, widgets should load cached state in viewWillAppear: in order to match the state of the view from the last viewWillDisappear:, then transition smoothly to the new data when it arrives.

NSURLSession
Note
The NSURLSessionTask class provides a new “priority” property with three associated constants: NSURLSessionTaskPriorityDefault, NSURLSessionTaskPriorityLow, and NSURLSessionTaskPriorityHigh. NSURLSessionTask priorities can be used to specify how multiple requests and responses to the same host should be prioritized. Note that the priority is a hint and not a strict guarantee of NSURLSessionTask performance.
For complete usage details of NSURLSessionTask priorities, refer to the NSURLSession.h header file, which is provided by the Foundation framework.

Phone
Note
To activate Wi-Fi Calling functionality for T-Mobile (U.S. only), follow these steps:
Go to Settings > Phone > Wi-Fi Calling.
Toggle the Wi-Fi Calling switch to ON.
If the carrier does not have the user’s registered emergency address, you will be asked to add it before the feature is activated.

Photos
Notes
Maintain a backup of your photo library before enabling and while using iCloud Photo Library beta by:
Importing to your Mac using iPhoto
Importing to your Mac using Image Capture
iCloud Photo Library beta will not download photos and videos that were synced to your device from iTunes. Any photos and videos synced to your device from iTunes will be removed when you enable iCloud Photo Library beta.
iPhoto for iOS will not launch on iOS 8 Beta. Launching Photos.app will migrate your iPhoto edits to the iOS 8 Photo Library. Make sure your iPhoto for iOS data is included in your device backup.
Fixed in iOS 8.1 Beta
The ability to automatically optimize device space is enabled for all accounts larger than 5GB.
Known Issues
If iCloud Photo Library beta is enabled, Settings -> iCloud -> Photos may crash.
Workaround: Use Settings -> Photos & Camera to manage settings for Photos.
The ability to automatically optimize device space is enabled for all accounts larger than 5GB.
When using iCloud Family Sharing, both iCloud Photo Sharing and My Photo Stream are enabled.
Provisioning Profiles
Known Issue
If you have upgraded to the 8.1 Beta from iOS 8 betas you may see your apps crashing due to provisioning profile issues.
Workaround:

Connect the device via USB to your Mac
Launch Xcode
Choose Window -> Devices
Right click on the device in left column, choose "Show Provisioning Profiles"
Click on the provisioning profile in question
Press the "-" button
Continue to removing all affected profiles.
Re-install the app
Speech Synthesis
Fixed in iOS 8.1 Beta
AVSpeechSynthesizer may not work.
Workaround: If you don’t hear speech in a particular language or dialect, go Settings > General > Accessibility > Speech >Voices >Language and download the Enhanced Quality voice for that language/dialect.
Stores
Fixed in iOS 8.1 Beta
Sometimes, loading certain pages or performing a search on the App Store or iTunes Store can be slow.

UIKit
Notes
UILabel has a default value of YES for clipsToBounds. This differs from the normal UIView default of NO.
The leftLayoutGuide and rightLayoutGuide APIs have been removed. Please use the layoutMargins property instead.

Fixed in iOS 8.1 Beta
RTF file support in UIWebView is broken.
Workaround: Show RTF files to the user is to use the Quick Look framework (QLPreviewController) or to load an NSAttributedString from the RTF file and show it in an UITextView, which will render the content in a much cleaner way.

WebKit
Note
The Navigation Timing API has been disabled only on iOS due to performance issues.

Wi-Fi Calling (T-Mobile US only)
Note
The carrier name in the status bar will show “T-Mobile Wi-Fi” when the device is able to make and receive Wi-Fi calls.

Copyright © 2014 Apple Inc. All rights reserved. Terms of Use | Privacy Policy | Updated: 2014-09-30
Feedback

*

** Required information

번호 제목 글쓴이 날짜 조회 수
공지 애플케어플러스 가입대행 서비스 오픈 안내 관리팀 2019.01.12 2280
88 등록 신청 접수를 재개합니다. 현재 등록작업 진행됩니다. [50] 관리팀 2013.06.12 5581
87 개발자 센터가 열리는 대로, 대기 중인 등록 건을 모두 처리해 드리겠습니다. [47] 관리팀 2013.06.11 5514
86 UDID 등록 없이 iOS8 설치 시, 재부팅할 때 벽돌이 됩니다. [30] 관리팀 2014.06.03 5503
85 문자메시지 발송서버 폭주 안내 [37] 관리팀 2013.06.11 5475
84 현재 등록 작업 진행 중입니다. 지금 등록신청 하시면 빠르게 등록됩니다. [22] 관리팀 2013.06.13 5459
83 진행 상황을 알려드립니다. [21] 관리팀 2013.06.11 5402
82 현재 실시간 등록 중입니다. [26] 관리팀 2014.10.02 5315
81 (6/3)iOS 8이 발표되었습니다. 신기능 안내! file 관리팀 2014.06.03 5173
80 애플 인증메일이 드디어 도착했습니다. 지금부터 순차 등록작업이 시작됩니다. [32] file 관리팀 2013.08.13 4940
79 (9/12) 오늘은 iOS7 베타 4 만료일입니다. 오늘 오전 활성화 오류가 뜨신 분들께 알려드립니다. 관리팀 2013.09.12 4921
78 현재까지 등록접수 하신 분들 모두 등록 완료되셨습니다! [23] 관리팀 2013.06.12 4863
77 (12/16)애플 본사 승인이 완료되었습니다. 지금부터 실시간 등록이 진행됩니다. [49] 관리팀 2013.12.16 4821
76 현재 개발자 센터 접근이 안 되어서 등록이 늦어지고 있습니다. [29] 관리팀 2013.06.11 4796
75 애플 서버 점검 관련 새 공지가 떴습니다. [17] 관리팀 2013.07.27 4776
74 밀렸던 등록건이 다 처리되었습니다. 현재 빠르게 등록처리 진행 중입니다. [4] 관리팀 2013.06.13 4762
73 현재 애플 개발자 센터의 서버 점검이 진행 중입니다. 등록처리가 지연되고 있습니다. [13] 관리팀 2013.07.20 4747
72 (5/31) iOS 8 공개(WWDC14) 기념, 선착순 20분께 UDID를 무료로 등록해 드립니다. [3] 관리팀 2014.05.31 4727
71 애플 개발자 센터 해킹으로 인해, 여전히 서버 점검이 계속되고 있어서 등록 처리 지연 중입니다. [10] 관리팀 2013.07.22 4713
70 (8/29) 오늘은 iOS7 베타 3 만료일입니다. 오늘 오전에 폰이 벽돌되신 분들께 알려드립니다. [26] 관리팀 2013.08.29 4500
69 10월 6일 대량 휴대폰 벽돌사태로 인한 벽돌 복구방법 안내 관리팀 2013.10.06 4481