xcode9.3

Xcode not supported for iOS 11.3 by Xcode 9.2 needed 9.3

孤街浪徒 提交于 2019-12-02 15:24:46
Apparently, with the latest IOS update, my version of Xcode could not build due to the following error. Could not locate device support files. This iPhone 7 Plus (Model 1661, 1784, 1785, 1786) is running iOS 11.3 (15E216), which may not be supported by this version of Xcode. Tried to install Xcode 9.3 via this link https://developer.apple.com/download/more/ . But as it turns out, my Mac OS version sees the update as an incompatible version. Running on Sierra 10.12.6 kl.woon Another option is to download the 11.3 device support at: iOS 11.3 (15E217) And don't forget to remove "(15E217)" from

Status bar could not find cached time string image. Rendering in-process

我是研究僧i 提交于 2019-12-02 14:59:37
I get the above runtime message after I upgraded to Swift4.1 and Xcode 9.3. Before the upgrade I did not have this message in my console window. Status bar could not find cached time string image. Rendering in-process. comes up every few minutes as long as I have the App running. It sees to me there is no negative side effect, my App is running, as usual, I have not seen any problems. I use the standard Status Bar, have not changed to modify it in any way. Question 1: Would there be a problem originating from this warning under situations i have not come across yet? Question 2: Does anyone

Xcode 9.3 - NSPredicate Bool crash

风流意气都作罢 提交于 2019-12-02 13:08:50
问题 After the Xcode 9.3 update, I've noticed that if you want to have Predicate like this: let predicate = NSPredicate(format: "preferred = %@", true as CVarArg) You have a crash. But in Xcode 9.2 this wasn't a problem. Any idea? 回答1: // Solution 3 [ Apple Documentation ] let predicate = NSPredicate(format: "preferred == TRUE") The exception occurs because true is not an object ( %@ ). You need the %d placeholder let predicate = NSPredicate(format: "preferred = %d", true) 回答2: I think you can

App crash on sign in (xcode 9.3) EXC_BAD_ACCESS (code=1, address=0x1)

試著忘記壹切 提交于 2019-11-29 15:57:27
问题 I'm getting this crash on 9.3 update, on 9.2 everything worked fine. What can it be? The error appears on sign in through any source (login pass, VK, google) class AppDelegate: UIResponder, UIApplicationDelegate, GIDSignInDelegate { var window: UIWindow? private let settingsManager = SettingsManager.manager func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { // Googole Map GMSServices.provideAPIKey("-k")

It gives errors when using Swift Static library with Objective-C project

自古美人都是妖i 提交于 2019-11-29 05:51:49
I need to make swift static library for my requirement. I made swift static library which uses swift and Obj-c code. I have included Obj-c files via bridge file. I am able to compile swift static library without any error and get libMySwift.a file. I use Xcode9.3 with Swift4 to compile library. I include libMySwift.a in obj-c project and also included obj-c compatible header to access my lib in the project. When I try to compile the project it give below warning and more than 200 errors. Auto-Linking library not found for -lswiftSwiftOnoneSupport Auto-Linking library not found for -lswiftCore

It gives errors when using Swift Static library with Objective-C project

爷,独闯天下 提交于 2019-11-27 23:10:28
问题 I need to make swift static library for my requirement. I made swift static library which uses swift and Obj-c code. I have included Obj-c files via bridge file. I am able to compile swift static library without any error and get libMySwift.a file. I use Xcode9.3 with Swift4 to compile library. I include libMySwift.a in obj-c project and also included obj-c compatible header to access my lib in the project. When I try to compile the project it give below warning and more than 200 errors. Auto