Related to the specific version of the Apple's IDE, Xcode 6.4. It was released on June 30, 2015. This tag should be used for questions about this specific version of Xcode, and not for general Mac or iOS programming topics. Use [cocoa] for Mac programming questions, or [cocoa-touch] for iOS (formerly iPhone OS) programming questions.
Questions tagged [xcode6.4]
118 questions
0
votes
1 answer
Xcode 6.4 how to use exception breakpoint
I am fairly new to Xcode and I have a question regarding how to trace back a bad access exception.
When I run my program in Xcode 6.4, it crashes and says there is a bad access somewhere. I can look into it and see all the assembly codes. However,…

GalaxyVintage
- 656
- 1
- 11
- 20
0
votes
0 answers
Add view to scrollview
How I can add different view which situated in storyboard to scrollview??Is it possible?If yes,please write code in swift.

Vadim
- 11
- 1
0
votes
2 answers
XCode 6.4 Undefined symbols for architecture arm64
Build settings in my project:
Architectures: armv7,arm64
Build Active architectures only: NO
Valid Architectures: armv7 armv7s arm64 arm6
I downloaded a prebuilt version of the library from Marek Kotewicz's GitHub which supports 64-bit…

SandeepAggarwal
- 1,273
- 3
- 14
- 38
0
votes
1 answer
Is there a way to deallocate a page in uipageviewcontroller after being swiped in swift ios?
I am new to swift iOS and I just wanna ask if there is a way to like remove or deallocate a page after being swiped because it's eating up too much ram every time I swipe to the next page. I am working on 64 pages so if I don't apply deallocation…

rendell
- 917
- 2
- 9
- 26
0
votes
5 answers
NSUserDefaults changed IOS app crashing after update
updated IOS app with changes in NSUser default keys ( added few more keys and changed some existing key names) app is crashing at initialization time after updating from store . If I delete the app completely and reinstall it then it is working…

Karthik Kondapaneni
- 77
- 2
- 9
0
votes
1 answer
How to add titles below the bars in Bar CHart created from Core Plot?
Hi I need to show the String titles below the bars of my Bar Chart created from Core Plot. I have many places in Core Plot framework but didn't find how to put text below the bars?
I need to show titles just like shown in the attached image.
Please…

Developer
- 6,375
- 12
- 58
- 92
0
votes
1 answer
Crash in PSPDFKit SDK
I integrate PSPDFKit framework.But when I run my project,it crashes anf shows +[PSPDFAnnotationGroupItem inkConfigurationBlock]: unrecognized selector sent to class 0x517f74 (lldb) .
I follow their integration process but it's not work for me.

Md.Ashik Mahmud
- 49
- 9
0
votes
1 answer
Can't upload ipa to diawi.com
I'm creating an ipa using distribution certificate(for Ad-hoc) using WildCard ID.
My wildcard ID is com.company.* so i set my bundleId to com.company.test. ipa successfully generating with this.
It can also install on my device but can not upload…

iBhavin
- 1,261
- 15
- 30
0
votes
0 answers
ld: 14 duplicate symbols for architecture x86_64 clang: error: linker command failed with exit code 1 in iOS PayPal sdk integration
I am new in iOS, so please help ** i already add all framework and sdk of paypal. i also checked duplication of linkes** how to solve this error.
thanks in advance
Ld…

Chandan Jee
- 5,440
- 4
- 16
- 24
0
votes
1 answer
Swift: 'Int' is not convertible to 'ObjCBool'
In my code I have a lazy var:
lazy var myService = {
return JSObjection.defaultInjector().getObject(MyService) as? MyService
}()
In the same file I try to call a function of myService:
func foo() {
…

Bastian
- 4,638
- 6
- 36
- 55
0
votes
1 answer
String is not converting into date according to time zone
I am receiving date in string form from server and I need to show the date according to my time zone (Indian: GMT +5:30).
Here is my code
NSString *dateString = @"2015-08-10 11:45:10";
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]…

Developer
- 6,375
- 12
- 58
- 92
0
votes
0 answers
Limit code completion in XCode
Is there any way I can have code completion as follows in Xcode (6.4 or 7)
Assume I have a line
DDLogDebug(@"Retrieved file content %@",fileTitle);
I now wish to change it to DDLogVerbose
I put my cursor on the D(after g) and type a V
I then hit…

Ryan Heitner
- 13,119
- 6
- 77
- 119
0
votes
0 answers
Note code in Swift
I have seen a similar request but did not respond to my problem.
I am building a simple app notes but when I make the login, the data saved on Parse appear for a few seconds on the TableView and then disappear. What am I doing wrong?
thank you…

kenji
- 1
- 2
0
votes
2 answers
keyboard of first ViewController's textfield appears in next ViewController for some seconds
I am developing app in Xcode 6.4 and running in simulator and device of iOS 8.0 and above. I have a textfield in a view controller and its value is passed to next view controller.
as usual nextscreen.str = textfield.text;
The problem is that a…

Max
- 2,269
- 4
- 24
- 49
0
votes
1 answer
Xcode 6.4 simulator does not need LaunchAgent workaround any more?
From this answer I did some workaround
https://stackoverflow.com/a/26031521/677596
for xcode 6.3 and below
You can also use launchd for running tests on the iOS simulator from a
SSH session, either by crafting a LaunchAgent and manually loading…

ssb
- 209
- 6
- 16