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
8
votes
2 answers

Xcode 6.3 missing unit test status/run in editor

I just upgraded to Xcode 6.3 and I have lost the unit test status/run indicators that were displayed in the left gutter of the editor. The status/run indicators don't immediately show in the Test Navigator either until after I perform a compile and…
Rob
  • 4,149
  • 5
  • 34
  • 48
7
votes
2 answers

How to debug Apple watch app on actual device?

I want to debug both the apple watch app (foreground) and the iOS app (background) The reason is because I'm using this code in Apple watch extension to open the iOS app in background to make a service call: [WKInterfaceController…
user1872384
  • 6,886
  • 11
  • 61
  • 103
7
votes
5 answers

Swift 1.2 cannot invoke 'count' with an argument list of type '(String)'

Updated to Xcode 6.3.1 with new Swift 1.2, the old method countElement change to count, however when I switch to use count, it always throw out this error message: cannot invoke 'count' with an argument list of type '(String)' This snippet is I…
goldenlimit
  • 92
  • 1
  • 5
7
votes
2 answers

Open Settings warning issue in Xcode 6.3: Comparison of address of 'UIApplicationOpenSettingsURLString' not equal to a null pointer is always true

I'm not inventing the wheel. In iOS8, to open Settings from inside the app I'm using this code: BOOL canOpenSettings = (&UIApplicationOpenSettingsURLString != NULL); if (canOpenSettings) { NSURL *url = [NSURL…
Gabriel.Massana
  • 8,165
  • 6
  • 62
  • 81
6
votes
1 answer

Integrate Cocos2dx project within Swift Project (XCode 6.3)

I have 2 separate Projects one is in Cocos2dx v3.6 and one is in Swift. I want to start a game from the Swift project. How can I do it? I have copied whole cocos2dx project into my Swift project and then created one View Controller in swift and…
Anand
  • 1,129
  • 7
  • 29
6
votes
4 answers

Xcode 6.3.1 error: Timed out waiting to acquire lock file for module 'X' where 'X' is my framework

I have the following projects in my workspace: Common Security (dependent on Common) Data (dependent on Common, Security, (and CoreData)) Api (dependent on Common, Security, Data) MyApp (dependent on Common, Security, Data, Api) All of the…
Tom Kraina
  • 3,569
  • 1
  • 38
  • 58
6
votes
2 answers

MPVolumeView not showing in iOS Simulator

This code works fine on a physical iPhone 6, but on iOS simulator the MPVolumeView doesn't show. - (void)setUpVolumeView { CGRect sliderRect = CGRectMake(20, 400, 300, 20); self.myVolumeView = [[MPVolumeView alloc]…
HenryRootTwo
  • 2,572
  • 1
  • 27
  • 27
6
votes
1 answer

Xcode 6.3 warning

I am getting this below warning after I update the Xcode to 6.3 version. Using integer absolute value function 'abs' when argument is of floating point type Example CGPoint startPoint = CGPointMake(15.0f, 25.0f); CGPoint endPoint =…
Sheik_101
  • 770
  • 1
  • 8
  • 24
6
votes
2 answers

How to archive watch kit app?

My Apple watch app is now finished ! I'd like to archive it to submit it for iTunes validation. My problem is that I can archive the iPhone app, but no way to archive the whole project... Do anyone know how to submit an iPhone app WITH its watch…
6
votes
3 answers

"No provisioned iOS devices are available with a compatible iOS version" after upgrade

I had Xcode 6.3 beta and iOS 8.3 beta, I updated to the public final versions and now I cannot run anything, getting this error: No provisioned iOS devices are available with a compatible iOS version. Connect an iOS device with a recent enough…
diegomontoyas
  • 1,785
  • 3
  • 17
  • 22
5
votes
2 answers

Dynamic resizing today widget

I implemented an table view into my today widget. The tableView has no fixed number of cells. Because of this the height of the widget has to change dynamically. Does someone knows how I can find out the height of the tableView? If I know the height…
paro
  • 217
  • 3
  • 10
5
votes
1 answer

Convert from nullable object into nonnull (Objective-C)

I've been using the new nullability stuff in Xcode 6.3 However, I'm running into an issue like this [Object doSomethingWithNonNullParam:otherObject.nullableProperty]; Whats the best way to solve this If I'm confident otherObject.nullableProperty…
Sam Jarman
  • 7,277
  • 15
  • 55
  • 100
5
votes
1 answer

BreakPoints Are not working in Swift in Xcode 6.3

In my project I have both objective c and Swift classes. I want to do debugging in objective c breakpoints are working whereas in Swift breakpoints are not working so it very difficult to debug. Note : I am integrating my objective c project in my…
Ganesh Manoj
  • 111
  • 8
5
votes
1 answer

new in Xcode 6.3/iOS 8.3: using self alloc for convenience constructor causes build error

This code did not change between Xcode 6.2 and 6.3, but the line containing [self alloc] now causes the error: Multiple methods named 'initWithType:' found with mismatched result, parameter type or attributes @implementation AGNetworkDataRequest +…
ray
  • 1,966
  • 4
  • 24
  • 39
5
votes
1 answer

All stored properties of a class instance must be initialized before returning nil from an initializer

I'm trying to use this code in a class though I keep on getting the above message. let filePath: NSString! let _fileHandle: NSFileHandle! let _totalFileLength: CUnsignedLongLong! init?(filePath: String) { if let fileHandle =…
uplearned.com
  • 3,393
  • 5
  • 44
  • 59
1 2
3
15 16