Related to the specific version of the Apple's IDE, Xcode 7.2. It was released on December 8, 2015.
Questions tagged [xcode7.2]
144 questions
4
votes
1 answer
This app is not allowed to query for scheme XYZ://
You might think it's a duplicate question, but it's not, I'm totally aware of all the answers on SO about the canOpenURL and its caveats on iOS 9, but here is my problem:
I'm trying to check if an specific app is installed on my device (both…

M. Porooshani
- 1,797
- 5
- 34
- 42
3
votes
1 answer
How to communicate inactive IOS app from Watch App( Watch OS 2)
Trying to upgrade my Watch OS1 app to Watch OS 2. Created new target for Watch OS 2. And using sendMessage:replyHandler:errorHandler to send/ get replies from IOS app. It working fine if only if IOS app is running. If Watch app try communicate when…

Nookaraju
- 1,668
- 13
- 24
3
votes
1 answer
added new video file is removed when simulator is relaunched
I am facing a problem.My Environment is:
OSX 10.10.5 YOsemite
xocde 7.2
I want to add a new video file(.mp4) in my ios simulator. i add this in
/Users/mynane/Library/Developer/CoreSimulator/Devices/mydevice/data/Media/DCIM/100APPLE
after adding…
user2763758
3
votes
0 answers
warning 'no explicit ownership' Issue Archive Project XCode
in Xcode 7.2.1 I have an issue when I archive my project, my app using WebSocket and I'm using the CocoaAsyncSocket Library, the app runs on Simulator or Any device but when archive, xcode show me this errors warnings:
in the class…

user_Dennis_Mostajo
- 2,279
- 4
- 28
- 38
3
votes
1 answer
Xcode 7.2.1 keeps crashing when switching to main.storyboard
I can stop it from crashing on startup by manually editing the main.storyboard file and changing useAutoLayout="YES" to useAutoLayout="NO", but when I open up the main.storyboard file in Xcode, it gives me the following error:
The document…

Big Money
- 9,139
- 6
- 26
- 37
3
votes
1 answer
Xcode 7.2 Invalid Swift Support - The SwiftSupport folder is missing
This might be some old issue already, but i've been working up for quite few days to fix this now. After submitting app to appstore i get this email :
Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using the current…

Suman Maharjan
- 67
- 1
- 8
3
votes
3 answers
xcode graph scene not visible
2 in yosemite vmware 10.10 my problem is that whenever I create a game project and click on art.scnassets and select ship.scn file to open in scene view the ship model not shown visible in xcode scene graph. it just empty screen. Also if I drag a 3D…

Flying
- 159
- 12
3
votes
1 answer
Clang Error in Google Analytics in Xcode 7.2 and Mac osx 10.11.2
Google Analytics was working fine in below version of Xcode 7 but after updating to Xcode 7 getting clang error.
I did these steps to add GA library :
1.
Added Google Analytics in the Xcode folder having name Google Analytics
Added…

Shobhakar Tiwari
- 7,862
- 4
- 36
- 71
3
votes
1 answer
Xcode 7.2 - Creating New Project '' TVOS '' Missing
Just updated xcode 7.2 on macbook pro when I'm creating new project there is "TVOS" missing.
Do I have to reinstall xcode or something I'm missing???
Please find the following screenshot for the reference.

M.A
- 448
- 6
- 21
2
votes
0 answers
How to disable c++11 feature cxx_unicode_literals in Xcode 7.2
I need to compile a C++ project in Xcode 7.2 (clang++ compiler) using C++11 dialect (-std=c++11 option), but using libstdc++ (GNU C++ standard library) which doesn't have all C++11 definitions/declarations.
Some third party library include header…

Lisur
- 149
- 1
- 12
2
votes
2 answers
Check if push enabled or location enabled ios sdk
I'm using following code to detect these 2 (Push Notifications and Location Services)
[postvars setObject:([CLLocationManager locationServicesEnabled])?@"true":@"false" forKey:@"locationServicesEnabled"];
BOOL pushEnabled = [[UIApplication…

Rahul Vyas
- 28,260
- 49
- 182
- 256
2
votes
0 answers
I am getting exception for the Status bar appearance in exception breakpoint
I have made the View controller based status bar ... YES since i am managing my status bar.
But some of my code still have the code Setstatusbarhidden:YES/NO old style deprecated API calls.
Is there any leads or advice what may be wrong in this…

codelover
- 1,113
- 10
- 28
2
votes
2 answers
xcode 7.2 clang: error: unable to execute command: Segmentation fault: 11
clang: error: unable to execute command: Segmentation fault: 11
clang: error: linker command failed due to signal (use -v to see invocation)
I am getting an error when archiving a binary.
Please help

Ionut Sebastian
- 71
- 1
- 5
2
votes
1 answer
Get SKSpriteNode by name Swift 2, Xcode 7
I have around 120 SKSpriteNodes.
I have a matrix of the position of each sprite, in this matrix I store the name of the sprite. I need to move a sprite to a new position.
How can I grab the following sprite by name:
let sprite =…

barracuda
- 968
- 3
- 10
- 26
2
votes
1 answer
What am I overlooking as I attempt to account for nil?
I've reread the Swift documentation a number of times, but I'm afraid I'm overlooking something simple here.
The function below processes just fine and properly calls the updateCalorieBalance method if there is value in the field…

Iggy
- 21
- 1