ios8.3

Xcode 6.3 not running iOS 8.4 - update to 6.4 fails

試著忘記壹切 提交于 2019-12-05 03:56:45
I have upgraded my iOS to 8.4, then I tried to run Xcode 6.3, it asks it can't mount the device since it's running 8.4 version (".. running a version of iOS that is not supported by this version of Xcode.") When I try to upgrade Xcode to 6.4 - update fails every time with error message (try again using purchases). Any suggestions how to solve this? Delete /Applications/Xcode.app . Download Xcode 6.4 from the Apple Developer Download site. Mount the .dmg and extract Xcode.app into /Applications . Marlon Ruiz You don't need to delete /Applications/Xcode.app. Open a terminal. Copy this: xcode

[CIContext initWithOptions:]: unrecognized selector sent to instance 0x170400960 in xcode8

浪子不回头ぞ 提交于 2019-12-05 02:09:29
run in ios8.3 ,but run in ios9 or 10 hasn't this problem. -[CIContext initWithOptions:]: unrecognized selector sent to instance 0x170400960 2016-09-19 18:08:21.025 *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[CIContext initWithOptions:]: unrecognized selector sent to instance 0x170400960' *** First throw call stack: (0x186d8c2d8 0x1985b00e4 0x186d933a4 0x186d90154 0x186c92ccc 0x1001c1e74 0x1001c1b7c 0x1001c143c 0x1001c1cfc 0x100311e0c 0x1003116d0 0x1001d7690 0x101f3025c 0x101f2fc08 0x101eee29c 0x103db8fd4 0x103db8f94 0x103dbdc28 0x186d437f8 0x186d418a0

iOS 8.3 Share Extension - Launching URL Schemes

℡╲_俬逩灬. 提交于 2019-12-04 08:42:37
问题 since iOS 8.3 update my share extension (which calls my main app using URL Schemes) stopped working. So I found out that the UIWebView approach I had to launch my app is not working anymore. I also tried the approach Apple recommends, using NSExtensionContext, and still no results. Any thoughts about this? My code follows: UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)]; [self.view addSubview: webView]; NSString *urlString = "com.myappscheme://shareextension";

Apple TestFlight (beta) app won't install

ぃ、小莉子 提交于 2019-12-03 16:14:20
问题 We have been using Apple's TestFlight facility to distribute a beta version of our app for a few months now (migrated from the older TestFlight service before it was merged into the AppStore). Things worked smoothly until today. After uploading a new beta build to TestFlight, the app no longer installs on the device (iPhone 6 with iOS 8.3). When opening TestFlight app and tapping "Install" to install the latest beta version of the app, TestFlight downloads the app, but when the installation

Keyboard will appeared automatically in ios 8.3 while displaying alertview or alertcontroller

妖精的绣舞 提交于 2019-12-03 12:27:13
I have updated Xcode 6.3 and ios8.3 check my code. then it gives me weird result. here is first screen of my demo app. here is one textfield. when I type somethin in textfield keyboard open. after typing completed. I have clicked on show alert button. I have displayed alert and output will be following. After click on cancel. I have displayed another alert then weird result keyboard should not open but when click on cancel button. display another alert and keyboard will appear automatically. here is next screen output following is the code - (IBAction)MethodShowAlert:(id)sender { [tmptxtField

Can't use keyboard extension in Spotlight after 8.3

本秂侑毒 提交于 2019-12-03 08:36:37
Since I updated my keyboard extension project to Swift 1.2 and my devices to iOS 8.3, I am no longer able to use my extension in Spotlight search. My extension is not in the list if I press and hold the "globe" key, and if it's the active keyboard when entering Spotlight the system keyboard is used instead. Other 3'rd party keyboards seems to work in Spotlight - and my own keyboard works in any other app I've tried it in (Notes, Mailbox, Safari etc). It used to work in Spotlight in all iOS 8.X versions up to 8.3. Did anything change in 8.3 that I need to handle to be able to use my keyboard in

iOS 8.3 - UITableView cell not aligned, indentation to the left

*爱你&永不变心* 提交于 2019-12-03 07:26:33
问题 I've stumbled upon a strange behaviour, where cells added to a UITableView were sometimes indented to the left. This only happens on iOS 8.3, and I can't find a clear pattern as to when this happens. Anyone experiencing same thing? 回答1: My tableViewCells were seeing increased left and right margins when run on iOS 8.3 that I did not see on previous versions. Setting: self.contentView.preservesSuperviewLayoutMargins = NO; fixed my problem and kept my margins consistent on all versions but be

Keyboard pops up after UIAlertView is dismissed on iOS 8.3 for iPad

可紊 提交于 2019-12-03 04:14:43
问题 With the latest iOS 8.3 release, our app starts to have a weird behavior. After finishing textfield editing, the user can click the close button which brings up an UIAlertView . When the user clicks discard in the alertview, alertview and current view are dismissed. But somehow the keyboard shows up after the view is gone which is quite annoying to users. After some debugging, it seems that the keyboard is shown for the last textfield that the user has accessed before closing the view. I

iOS 8.3 Share Extension - Launching URL Schemes

旧时模样 提交于 2019-12-03 00:42:50
since iOS 8.3 update my share extension (which calls my main app using URL Schemes) stopped working. So I found out that the UIWebView approach I had to launch my app is not working anymore. I also tried the approach Apple recommends, using NSExtensionContext, and still no results. Any thoughts about this? My code follows: UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)]; [self.view addSubview: webView]; NSString *urlString = "com.myappscheme://shareextension"; NSString * content = [NSString stringWithFormat : @"<head><meta http-equiv='refresh' content='0; URL=%@'>

How to get iOS 8.3 emoji keyboard height?

不羁的心 提交于 2019-12-02 22:09:44
I can handle two events: when keyboard shows and when keyboard hides. Everything worked fine in iOS 8.2 and older. But how to handle event when you change your keyboard language? When you change the english keyboard to the emoji keyboard, the height of emoji keyboard (in ios 8.3) is bigger and it hides the content. Or maybe you have a solution how to control iOS 8.3 emoji keyboard height? OK. So looking at my old code, I remembered, I do not use 2 observers ( UIKeyboardDidShowNotification / UIKeyboardDidHideNotification ). I use a single observer ( UIKeyboardWillChangeFrameNotification ), that