Apple ออกอัพเดท iOS 8.3 beta 4 Public Beta อัพเดทผ่าน OTA ได้เลย

iOS 8.3 beta 4 อัพเดทข่าวไอทีกับ 1000TIPsIT Apple ออกอัพเดท iOS 8.3 beta 4 build 12F61 Public Beta (เวอร์ชั่นเดียวกันกับนักพัฒนา) ส่วนความจุของไฟล์บน iPhone 6 Plus ขนาดไฟล์ 146MB. แต่ละรุ่นไฟล์อาจจะมีขนาดไม่เท่ากันนะครับ iPhone 5 ขนาดไฟล์ 100 MB สำหรับใครที่ติดตั้ง iOS 8.3 beta 3 ก่อนหน้านี้

iOS 8.3 beta 4 build 12F61

  ใครที่สนใจสามารถอัพเดทเป็น iOS 8.3 beta 4 แบบ OTA ได้เลยโดยได้ที่ Settings (การตั้งค่า)> General (ทั่วไป)> Software Update (รายการอัพเดทซอฟท์แวร์) การดาวน์โหลดและติดตั้งจะต่อเชื่อมต่อผ่าน WiFi ถึงจะสามารถดาวน์โหลดและติดตั้งได้นะครับ เวอร์ชั่นนี้ต้องเป็นนักพัฒนาเท่านั้นนะครับ ถึงจะสามารถอัพเดทและใช้งานได้ แต่สำหรับใครที่สนใจ แต่ยังไม่เป็นนักพัฒนา สามารถทำตามขั้นตอนตามลิ้งค์นี้ได้เลยครับ

วิธีติดตั้ง iOS 8.3 Public Beta แบบฟรีๆ

iCloud Pphoto Library

unknown sender messages

What’s New  iOS 8.3 beta 4

Notes and Known Issues

The following issues relate to using iOS SDK 8.3 to develop code.

App Extensions

Notes

  • App 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.

CarPlay

Known Issue

Outgoing Call Audio and FaceTime Audio may be choppy.

Spotlight

Known Issue

3rd Party keyboards may not be available for selection in Spotlight Search.

Workaround: Reboot the device.

UIKit

Note

When linking against iOS 8.3, any code that relies on layout information (such as the frame) of a UIButton subview when the button is not in the window hierarchy will need to send layoutIfNeeded to the button before retrieving layout information (such as button.titleLabel.frame) to ensure that the layout values are up to date.

For example, if you had something like this:

UIButton *button = [UIButton
buttonWithType:UIButtonTypeSystem];
// code that sets up the button, but doesn’t yet add it to a window
CGRect titleFrame = button.titleLabel.frame;
// code that relies on the correct value for titleFrame

You now need:

UIButton *button = [UIButton
buttonWithType:UIButtonTypeSystem];
// code that sets up the button, but doesn’t yet add it to a window
[button layoutIfNeeded]; // This is also safe pre-iOS 8.3
CGRect titleFrame = button.titleLabel.frame;
// code that relies on the correct value for titleFrame