Questions tagged [xcode6.3]

Related to the specific version of the Apple's IDE, Xcode 6.3. It was released on April 8, 2015.

Version 6.3 of Apple's Xcode IDE.

238 questions
5
votes
2 answers

Generic classes in "frameworkname"-Swift.h causes "Type name requires a specifier or qualifier" error in Xcode 6.3

I updated to Xcode 6.3, and I had two separate projects (one is a framework) in my workspace. Now, Xcode autogenerated this "frameworkname"-Swift.h header file, but when I had a generic class as a property, it produces the following lines: @class…
Dániel Nagy
  • 11,815
  • 9
  • 50
  • 58
5
votes
3 answers

Use of unresolved identifier NSCalendarUnitDay

I just updated Xcode to its 6.3 version. Except all the fixes I have to make regarding as (mainly), I have some warnings that just appeared (which is weird as it states it is since iOS 8.0). My code NSCalendar.currentCalendar().compareDate(self,…
Nico
  • 6,269
  • 9
  • 45
  • 85
4
votes
1 answer

Write into Settings bundle in Swift

I have created an app with settings bundle in it and the app configuration can be changed. Reading from Settings bundle is done. I am using below code. let defs: NSUserDefaults = NSUserDefaults.standardUserDefaults() defs.synchronize() …
Mithun
  • 459
  • 1
  • 10
  • 32
4
votes
1 answer

What Has Replaced the "main.m" File in Xcode 6.3

According to the IOS Developer Library at: https://developer.apple.com/library/ios/referencelibrary/GettingStarted/RoadMapiOS/FirstTutorial.html The main function in main.m calls the UIApplicationMain function within an autorelease pool. However, in…
Mark B
  • 147
  • 2
  • 8
4
votes
0 answers

CFBundleExecutable missing or invalid

Attempting to run my project in the iOS simulator, I get a launch code error '0'. Checking the console logs in CoreSimulator.log I found the .app executable "has missing or invalid CFBundleExecutable in its Info.plist". I'm not sure how to deal…
Joshua Archer
  • 113
  • 3
  • 12
4
votes
3 answers

How to remove 100s of warnings "implicit conversion loses integer precision: 'NSInteger' (aka 'long') to 'int'" I got after updating to arm64?

Problem: Yesterday I converted a large project of mine to support arm64 and after that I got 500+ warnings at once. About 70% of them are where NSInteger is being assigned to int or vice versa, and remaining are where NSUInteger is formatted in…
4
votes
2 answers

How to solve this error in Xcode when testing your app on the Apple Watch

I've tested my Apple Watch app on the simulator and it runs perfectly...However I couldn't test my app on the actual Apple Watch device: I ran my iPhone app in Xcode.... Once completed it will install the app on Apple Watch. Then, Apple watch app…
user1872384
  • 6,886
  • 11
  • 61
  • 103
4
votes
2 answers

In Xcode playground, control the string representation in the right side column?

I thought the Printable protocol would do it, but it doesn't. Is there another protocol? I want it to show the 3 numbers, not "C._GLKVector3"
Rob N
  • 15,024
  • 17
  • 92
  • 165
4
votes
1 answer

How to plot points in iOS-chart by taking values from a different method

I want to make a graph by taking values from json api. I have defined it in requestFinished method but I want to call the values in setDataCount method. I have defined the model in requestFinished method as: for (NSMutableArray *dictionary in…
Itaws
  • 330
  • 1
  • 22
4
votes
1 answer

MergeSwiftModule - Building a Swift app in Xcode 6.3 gets stuck in "Merge MyApp.swiftmodule"

Building an app in Xcode 6.3 gets stuck for several minutes (approx. 10mins) on a step Merge MyApp.swiftmodule: MergeSwiftModule normal x86_64…
Tom Kraina
  • 3,569
  • 1
  • 38
  • 58
4
votes
0 answers

XCode 6.3 and iPhone 5s iOS 8.3 (12F70)

After install XCode 6.3 my device moved to Ineligible section. Select by product->Destination works ok, but i want to fix issue and not bypass it. I think problem is in 8.3 version. Device is running on 12F70 version, but there is no such folder in…
4
votes
2 answers

Update to Xcode 6.3 breaks app - Google GTLTouchStaticLib "not equal to a null pointer is always true"

I use Google Drive SDK in my app. It has worked perfectly since around June 2014. Following update to Xcode 6.3, none of my targets build. The implementation file GTMOAuth2ViewControllerTouch.m contains two blocks that the compiler complains…
andrewbuilder
  • 3,629
  • 2
  • 24
  • 46
4
votes
1 answer

Since XCode 6.3 -> Nib could not be loaded

I updated my XCode from 6.2 to 6.3 today. I adapted all the swift changes, but when I run the application, I get errors for every NIB I try to load that has ~ipad or ~iphone. (NIB could not be loaded) Nibs that don't have that device modifier load…
CPlusPlus
  • 479
  • 5
  • 14
3
votes
1 answer

How To detect Touch ID is Configured or not in device

I am using this below code for detecting the Touch ID availability in device it works fine - (BOOL)canAuthenticateByTouchId { if ([LAContext class]) { return [[[LAContext alloc] init]…
S P Balu Kommuri
  • 890
  • 10
  • 28
3
votes
0 answers

Apple Mach-O linker error: Undefined symbols for architecture i386 Google Protobuf

I am trying to use Protobuf 2.6 with Xcode version 6.3. I've added the libprotobuf-lite.a to my Demo application and added the path to the Header files in the Header Search Paths., but I am getting this error. Undefined symbols for architecture…
Aagman
  • 684
  • 6
  • 18