Questions tagged [xcode6gm]
38 questions
51
votes
1 answer
Email composure iOS 8
I'm trying to open email composure in iOS 8 from Xcode 6, but getting an error. The same code is working fine if I'm trying from Xcode 5. Later I downloaded a sample code from apple developer portal:…

Chahal
- 995
- 2
- 14
- 24
29
votes
6 answers
ios simulator appear with UDID in xcode 6
When i select simulator from xcode 6 then i'm getting multiple option to select simulator but simulator comes with UDID. Please see the below image and please help me out. Thanks in advance.

Dharmbir Singh
- 17,485
- 5
- 50
- 66
27
votes
3 answers
Cannot sign applications in XCode 6
I have just upgraded from XCode 5.1 to XCode 6.0 GM and can no longer sign my applications for ad-hoc deployment. I perform the following steps:
I open Window -> Organizer and select "Archives"
I select an archive (either one I have built from…

RB.
- 36,301
- 12
- 91
- 131
26
votes
3 answers
Unable to set submenu for NSMenuItem (FinderSync extension)
I'm trying to create a cascade submenu for a Finder Sync extension in Swift/Cocoa. I have the following code:
override func menuForMenuKind(menuKind: FIMenuKind) -> NSMenu! {
let m = NSMenu(title: "")
let mi1 = NSMenuItem(title: "item1",…

Krzysztof Rosiński
- 1,488
- 1
- 11
- 24
25
votes
3 answers
How to get code coverage in Xcode 6?
My tests are XCTests and I'm using Objective-C instead of Swift.
I've seen some articles that tackle the topic, but the seem focused on older versions of Xcode, for example:
Visualizing Code Coverage with Xcode
Code Coverage Fixed for Xcode…

cnandreu
- 5,113
- 3
- 25
- 50
23
votes
7 answers
App Validation on Xcode 6 GM release
When I try to validate my build using xcode 6 GM release I am getting this error.
Error : itunes store operation failed no eligible software found. Make sure this software is owned by your developer organization.
Can anybody here suggest some…

Waqas Mahmood
- 354
- 3
- 12
20
votes
5 answers
How do I change the text color of UIPickerView with multiple components in Swift?
Below code will change the font colour of the picker view of all 3 components. However, it crash when I try to spin the wheel. I think it has to do with the didSelectRow function. Maybe the two function have to be nested somehow? Any idea?
…

KML
- 2,302
- 5
- 26
- 47
12
votes
2 answers
swift core data fetching relationship
I'm a little bit confused try to fetch relation data from coredata in swift
Person Entity
contains the name of person and Unique Id. The relation with Books is ONE to Many
For example
Person Entity:
idPerson = 25 - namePerson = John
idPerson = 26 -…

Stefano Vet
- 567
- 1
- 7
- 18
12
votes
5 answers
Xcode 6 GM - Build error when copying generated "MyAppName-Swift" header file?
Below is the error I'm getting when building my application. Does anyone have experience with this error?
ditto: can't get real path for source…

aleclarson
- 18,087
- 14
- 64
- 91
9
votes
2 answers
How to create new h and m file in Xcode6
I downloaded Xcode6 and create a simple project.When i choose objective C option from new file template it creates a file name with .m extension.I do not know how to create new .h and .m file in Xcode6.any help will be appreciated.thanks in advance

user3823935
- 891
- 2
- 16
- 26
4
votes
1 answer
UIAutomation test invocation from the command line with Xcode 6
Running UIAutomation tests from the command line seems to break often with new Xcode releases (judging by past posts). Having never used the command line scripting for this, I found this post from 2012: Automation Instrument from the Command…

idStar
- 10,674
- 9
- 54
- 57
4
votes
6 answers
xcode 6 GM crash after launch
I use OS 10.10, Xcode 6 GM, my project write by swift(& Objective-C).
The project can run with Xcode 6-beta7.
Process: Xcode [7267]
Path: /Applications/Xcode.app/Contents/MacOS/Xcode
Identifier: …

ZYiOS
- 5,204
- 3
- 39
- 45
3
votes
0 answers
How to init UIView from xib using Swift?
Does anyone sucessfully replicate this objc method in swift? I still can't make it successful in init method.
self=[[[NSBundle mainBundle] loadNibNamed:@"DGNodeView" owner:nil options:nil] firstObject]
I still can't find a good answer that is…

eNeF
- 3,241
- 2
- 18
- 41
3
votes
1 answer
Creating swift cocoa touch framework with objective-c files
I'm trying to build a Cocoa Touch Framework in Swift with AFNetworking integrated, among other things... in xCode 6.0.1
I keep getting the "include of non-modular header inside framework module 'MyFrameworkName' when I include the .h file in the…

miya
- 1,059
- 1
- 11
- 20
3
votes
2 answers
Vfr-Reader crashes on assert(range.location != NSNotFound);
I am using thisopen source control called Vfr Reader to show pdf files in my app. All was working on iOS 7. After iOS update app crashes when I try on open a pdf file.
I am using this code to initialize pdf reader.
NSString *fileName = [[NSBundle…

Ali Sufyan
- 2,038
- 3
- 17
- 27