For questions about the 10.2 version of Xcode. Use this tag in combination with the general [xcode] tag. If your question applies to Xcode more generally, use only the [xcode] tag.
Questions tagged [xcode10.2]
151 questions
2
votes
1 answer
Fatal error: Binding error to behavior relay: objectDeleted: file #2025
I am facing issue on debug as well as release mode,
Xcode 10.2.1
macOS Mojave 10.14 .5
swift5.09
Fatal error: Binding error to behavior relay: objectDeleted: file…

Mukesh Lokare
- 2,159
- 26
- 38
2
votes
1 answer
Can't get react-native to build in IOS when targeting real device
I have a react-native app that is building successfully when I run it from react-native run-ios AND when I run it from Xcode, as long as I'm targeting an emulator.
However, when I change the target device to my attached Iphone, Xcode fails with the…

mike hennessy
- 1,359
- 1
- 16
- 35
2
votes
1 answer
Build on Xcode 10.2.1 failing at project for tvOS and iOS
I have a lib that has targets for tvOS and iOS on the same workspace.
When I build for tvOS, it gives me an error saying:
The following build commands failed:
CompileSwift normal arm64
CompileXIB…

jademcosta
- 1,528
- 15
- 23
2
votes
2 answers
"Missing architecture. Apps built with Watch OS 5.0 and later SDKs must contain additional architectures."
When I am trying to upload the app to appstoreConnect, it fails with below error:
ERROR ITMS-90733: "Missing architecture. Apps built with Watch OS 5.0 and later SDKs must contain additional architectures.
the iOS version: iOS 10
the WatchOS…

Deeksha Mishra
- 21
- 3
2
votes
2 answers
Framework Search Paths is missing in Search Paths of Build Settings
I believe this is something simple but I am kind of struggling with it ... new to iOS development ... I need to add framework search paths in the build settings of my project but for some reason I don't see the "Framework Search Paths" setting in…

FaISalBLiNK
- 691
- 2
- 11
- 24
2
votes
0 answers
Cocoa Swift: How to add "Application Scene" to StoryBoard
I'm trying to implement a StoryBoard in Document-Base application but I can figure out how to add "Application Scene":
when I search in the object library the only two options I got are the following:
Any of you knows how or why the object…

user2924482
- 8,380
- 23
- 89
- 173
2
votes
0 answers
iOS Xcode 10.2 fails to attach debugger to Apple Watch
I'm trying to debug my WatchKit app on a real device. I select the watchkit app target, and my real device + Apple watch as deployment target. Xcode succeeds deploying the app to device, but seems to quit before the debugger finishes attaching. I…

Alex Stone
- 46,408
- 55
- 231
- 407
2
votes
1 answer
Unable to run Xamarin.UItests on Xcode 10.2
I’ve faced issue with Xcode 10.2 and Xamarin.UITest. Every time I try to start UITests it throws exception:
“Unable to determine simulator version for CA82FB2F-CDE5-4083-9718-108A86EFF1B3”
I have only one simulator for this id. How can I fix…

Alexdrob
- 95
- 1
- 4
2
votes
0 answers
Xcode 10.2 Beta break point not working - The LLDB RPC server has crashed
In Xcode 10.2 Beta - Break point not working. Application removed from debugging mode and got terminal Message like below.
Message from debugger: The LLDB RPC server has crashed. The crash log
is located in ~/Library/Logs/DiagnosticReports and…

Pratik Sodha
- 3,679
- 2
- 19
- 38
2
votes
1 answer
How to call Swift init method from Objective-C
I was using Xcode 10.1 and used SWIFT_VERSION 3.0 in Objective-C project.
The below code worked fine with Swift 3.
RichTextEditor.swift:
init(frame: CGRect, editAccess: Int) {
super.init(frame:frame)
}
Objective-C class calls above…

Wanker Silva
- 413
- 4
- 18
2
votes
0 answers
Xcode Version 10.2 (10E125) - error while creating archive - error: Segmentation fault: 11 ( workaround solution found )
We have XCode 10.1 and XCode 10.2 on two different mac. The same project is debugging on mac devices and archiving from XCode 10.1. The project is in Swift 4.2. It also has Objective C files.
But it is not archiving from XCode version 10.2. ( It…

SHS
- 1,414
- 4
- 26
- 43
2
votes
3 answers
How to fix 'Cannot override a self return type with a non-self return type' after upgrading Xcode
I'm trying to build an iOS AWS app and I'm having some problems.
I just updated Xcode to version 10.2 and created a brand new project. I'm at the point where I'm trying to install the dependencies with CocoaPods for user authentication. After…

rolandforbes
- 55
- 7
2
votes
0 answers
Xcode 10.2 compilation issues FirebaseCore
Just updated to Xcode 10.2 and now our project won't compile. We're using FirebaseCore (via cocoa pods). Any idea what's going on?
error: Multiple commands produce…

strangetimes
- 4,953
- 1
- 34
- 62
2
votes
1 answer
Xcode 10.2 Swift 5: dynamic' property '' must also be '@objc'
After updating my Xcode to 10.2 which includes Swift 5, I tried building my project and got this error.
dynamic property 'openingHours' must also be '@objc'
on this line of code
dynamic let openingHours = List()
And before…

Shabir jan
- 2,295
- 2
- 23
- 37
2
votes
1 answer
Xcode 10.2 - Use of undeclared type Result
I have downloaded Xcode 10.2 beta release. I am trying to use new Result type in Application project or Playground with Swift 5 enabled.
My code is as below:
import UIKit
enum SampleError: Error {
case foo
}
func bar() -> Result

matrejek
- 400
- 1
- 4
- 15