Questions tagged [xcode6.3.1]

Xcode 6.3.1 is Apple's integrated development environment (IDE). This tag should only be used for questions about Xcode itself, and not for general Mac or iOS programming topics. Use [cocoa] for Mac programming questions, and [cocoa-touch] or [ios] for iOS programming questions.

Xcode is Apple's integrated development environment (IDE) for developing OS X and iOS apps. The version 6.3.1 was unveiled on April 21, 2015.

Xcode 6.3.1 is a maintenance update over version 6 with bug fixes and performance improvements. For a detailed list, see the release note.

This tag is for IDE only questions with the version 6.3.1. Questions related to the programming languages should go to the correct tag , , and . When they are only related to the os and .

27 questions
22
votes
3 answers

Property 'self.*' not initialized at super.init call

I just updated my xcode to 6.3.1. The problem is I got this weird error message since Swift 1.2. I got this kind of error message /Users/MNurdin/Documents/iOS/xxxxx/Library/SideBar.swift:32:15: Property 'self.originView' not initialized at…
Nurdin
  • 23,382
  • 43
  • 130
  • 308
14
votes
1 answer

Core Location delegate methods not getting called in iOS 8.3 Xcode 6.3.1

I am trying to get the user's current location using the Core Location Framework in Xcode 6.3.1, I did following things: Added Core Location Framework under Target-> General-> Linked Frameworks & Libraries My ViewController.h file is as shown…
iYoung
  • 3,596
  • 3
  • 32
  • 59
7
votes
1 answer

Cannot start iPhone Simulator

I have Unity 5.0.2p1 Personal and Xcode Version 6.3.1 (6D1002). Here are some steps for anyone hoping to reproduce the problem: A new blank Unity project IOS Player Settings > SDK Version : Simulator SDK Build and Run produces this when app is…
azami1986
  • 93
  • 1
  • 6
5
votes
0 answers

Print out instance in Xcode console issue

I use po command in Xcode console to check some needed information. So after I used po vc I have this: (lldb) po vc error: field '__FuncPtr' declared with incompatible types in different translation units ('void (*)(id)' vs. 'void (*)()') error:…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
3
votes
2 answers

'stdarg.h' file not found error

I recently upgraded to xcode 6.3.1. I tried creating a sample project from "Master Detail application" template, but build failed with the below error. Device - Universal language - swift Not using Core…
user3923049
  • 43
  • 1
  • 3
3
votes
1 answer

How to import DDMathParser in iOS 8 project?

I am totally new to swift and developing my first application for iOS. I need to use DDMathParser with it. I followed guide at their site but i am getting errors at import statement Expected identifier in import declaration Expected…
Bilal
  • 558
  • 8
  • 18
3
votes
0 answers

Allocations tracking library was not loaded in time - doesn't work on ios 7

I'm trying to run zombies instrument with an ios 7.1 simulator but I receive the error "Allocation tracking library was not loaded in time". When I try to run zombie with an ios 8.3 simulator it works. I'm working with xcode 6.3.1, and zombie is…
Nachum
  • 233
  • 1
  • 2
  • 10
3
votes
0 answers

Debugger is not working in Xcode 6.3.1

Since Xcode 6.3.1, with a Swift project (not Obj-C), if the name of the project folder contains one or more / slashes such as a date i.e SomeApp04/05/15 the debugger does not work correctly for me. It ignores (goes right past) breakpoints without…
3
votes
1 answer

Unable to connect to parse in iOS simulator

I have used parse.com as my backend for my iOS app and the app is unable to connect to parse when tested on a simulator but it works fine when I test it on my phone. Has anyone ever faced a similar issue it would be great if someone can shed some…
bachman
  • 690
  • 7
  • 22
3
votes
1 answer

Upload build to iTunes Connect issue

I am uploading new build on iTunes Connect via Xcode. I've selected all my settings automatically I mean about provisioning profiles and certificates, so the bundle id is also appropriate. After I clicked submit to app store button, the Xcode build…
2
votes
1 answer

The Developer Disk image could not be mounted error with iOS 8.4 device - Ineligible Devices section

I have tried with this but couldn't solve my issue - Ineligible Devices section. I m getting an error The Developer Disk image could not be mounted error with iOS 8.4 device can anyone please help me how can I run iOS 8.4 version device with Xcode…
soumya
  • 3,801
  • 9
  • 35
  • 69
2
votes
2 answers

Xcode 6.3.1 quit unexpectedly

I'm getting an error Xcode 6.3.1 quit unexpectedly whenever Xcode is opened. This was working fine till last night. I have tried restart system but didn't worked. Reinstalling won't be feasible approach since I have downloaded simulator and…
Jayprakash Dubey
  • 35,723
  • 18
  • 170
  • 177
2
votes
3 answers

Why aren't simulators showing in the Xcode 6.3.1 scheme selector?

I cannot seem to build for a simulator in Xcode 6.3.1 The scheme selector only lists iOS Device or my plugged in device as seen below: xcodebuild -showsdks lists it: OS X SDKs: OS X 10.9 -sdk macosx10.9 OS X 10.10 …
Monte Goulding
  • 2,380
  • 1
  • 21
  • 25
1
vote
2 answers

Is there a way to show the entire simulator screen?

This is what the screen displays on my MacBook. After I updated Xcode, it changed from showing the entire screen of the device to showing part of the screen. I now have to scroll to see everything that would be displayed on the screen.
Owen Bridges
  • 81
  • 1
  • 3
  • 13
1
vote
2 answers

Code in xcode 6 no longer working in xcode 6.3.1

before this to delete a cell value in UItableview i use the following code and it works as it should .... but now it give me an error. THE ERROR: Cannot invoke 'deletedObjects' with an argument list of type '(NSManagedObject)' on the following…
1
2