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
0
votes
1 answer
Xcode 7.2 after using 7.3 - no simulators listed
I was working in Xcode 7.3 last night but it was crashing for some crazy reason whenever I tried to debug, but this isn't the issue.
Point is, I'm trying to downgrade to Xcode 7.2 (not 7.2.1, from https://developer.apple.com/downloads/). I've…

FateNuller
- 878
- 2
- 12
- 27
0
votes
1 answer
Cannot force unwrap value of non-optional type 'UIImage'
In my project contain this following line of code. But I always get the error. I am using Xcode 7.2 and iOS 9.
let image: UIImage = UIImage(CGImage:imageRef, scale:originalImage.scale, orientation:originalImage.imageOrientation)!

IKKA
- 6,297
- 7
- 50
- 88
0
votes
1 answer
Google Login Issue in OS 9.2 Xcode 7.2
I am using Xcode 7.2, testing on iOS 9.2 and using pod 'Google/SignIn'
After login success and allowing the permission its redirect to the google.co.in page instead of close the screen and calling their delgates. The same is working fine in OS 7.0…

Chandan Kumar Jha
- 325
- 2
- 4
- 18
0
votes
0 answers
Testing UIButton triggers IBAction Listener UI Automation testing Xcode 7
I am trying to Test my app using Xcode 7 UI tests automation but I am having issue in button tap. I need to know if there exists any way to check if button tapped has triggered the IBAction Listener.
Currently my test case is succeeding but in…

Ammar
- 105
- 1
- 10
0
votes
1 answer
Compiler update for Carthage project
I got a project, which is built with Carthage and uses swift2.0. I am trying to run the project, but encountered this issue:
Module file was created by a newer version of the compiler.
After struggling for about 1 hour, I found that this error…

fxpage
- 11
- 5
0
votes
0 answers
Missing iOS distribution signing identity for ........ xcode 7.2
I am new for the iOS development and I want to test my iOS app using new device. I using "save for ad hoc deployment" for creating project archive. But, error massage is "Missing ios distribution signing identity for (company name)". I'll really…

prasha
- 1
- 1
0
votes
1 answer
Which is the alamofire object mapper and alamofire pod version supported for xcode 7.2
i cannot compile xcode after installing this i am getting error
pod 'Alamofire', '~> 3.1.4'
pod 'SwiftyJSON', '~> 2.3.2'
pod 'AlamofireObjectMapper', ‘2.1.2’

samad5353
- 381
- 1
- 5
- 18
0
votes
0 answers
ContactPickerView doesn't display..app crashes
I'm getting this error when trying to open the "Contacts" app view within my app for selecting and importing contacts. I'm not sure what the issue is. Can someone help solve the problem?
*** Terminating app due to uncaught exception…

jonB22
- 5
- 4
0
votes
2 answers
Need to add text field contents at specific index of NSMutableArray
I have this code:
NSMutableArray *customServicesArray = [[NSMutableArray alloc] initWithCapacity: 24];
PreferenceData *userPreferences = [PreferenceData MR_findFirstInContext: [NSManagedObjectContext MR_defaultContext]];
// fill…

SpokaneDude
- 4,856
- 13
- 64
- 120
0
votes
1 answer
swift2 loading contents of text file into variable
I am trying to fill an array by loading it from a text file and then separating the text with line breaks to formulate an array however i am getting an error "Expected Expression"
var marrCountryList = [String]()
try! var text =…

melwyn pawar
- 1,766
- 2
- 16
- 21
0
votes
0 answers
UIAlertViewController when presenting shows strange warning
all of a sudden I am getting this warning when " [self presentViewController:alert animated:YES completion:nil]; "
**the behavior of the UICollectionViewFlowLayout is not defined because:
2016-03-18 20:34:00.315 TestTableView[15391:1275189] the item…

John Z
- 125
- 1
- 13
0
votes
2 answers
NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9813)
My app was working fine when I was using http://domain.com. But today, when I changed http:// to https://, I am facing this issue: NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9813). I have also made changes in .plist.…

Sudha Tiwari
- 2,499
- 26
- 50
0
votes
1 answer
how to create jabberd xmpp client in ios9 using swift2
I am following this link
https://github.com/processone/xmpp-messenger-ios
but am getting couple of errors which are as follows
1.Could not build ObjectiveC module 'XMPPFramework'
2.CocoaAsyncSocket/GCDAsyncSocket.h file not found.
I have tried out…

Anand Yadav
- 479
- 5
- 17
0
votes
1 answer
how to move cptscatterplot line little forward
I have implemented cptscatterplot lines.In my app, i have bars under labels and based on yvalues cptscatterplot line will be drawn.
If value is empty then i am breaking the line and continuing again if value is valid, but the line ends with…

Steve Gear
- 757
- 2
- 16
- 44
0
votes
2 answers
How can I make my app look alike in both portrait and landscape view?
This is my constraint
I have made use of auto layout in my app, all the UI elements are visible in portrait mode:
But the view is incomplete in landscape mode.
How can I make my app look alike in both portrait and landscape view?
I am using Swift…

Manee ios
- 1,112
- 11
- 14