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
1
vote
0 answers
Crash when debug sources after install Xcode 7
Seems there is an issue right now. I am trying to debug sources in Xcode 6, but when I get a line where I put breakpoint Xcode 6 unexpectedly crashes.

Matrosov Oleksandr
- 25,505
- 44
- 151
- 277
1
vote
2 answers
Error finding selector using NSTimer in Swift
I am trying to use the NSTimer function to check on a request every five seconds. Except I am getting the error:
MyApp[13952:2483629] *** NSForwarding: warning: object 0x7f98cd15ab80 of class 'MyApp.Requests' does not implement…

Nathan McKaskle
- 2,926
- 12
- 55
- 93
1
vote
2 answers
How to support iOS 7.0 using xcode 6.4?
When I push the build to app store using XCode 6.4 and deployment target as iOS 7.0, I am getting invalid minimum os version error. I want to support 7.0 OS as well. Please let me know what needs to be done.
The error is
"ERROR itms-90098: The…

Coder
- 1,661
- 4
- 27
- 50
1
vote
0 answers
Error : Attempt to delete and reload the same index path
I have a system of expand/collapse for a UITableView. This error occurs when we open a first item and we want to open another.
If the first item (opened) is not visible on the screen when we open another, the error occurs, but if the first item…

madara_uchiha
- 41
- 6
1
vote
3 answers
UISearchBar not working even with delegate set in viewDidLoad
The searchBarBookmarkButtonClicked method isn't firing when I tap on the search bar. I have already added the self.searchBar.deleagate = self; and in my .h file I added the .
.h file:
#import
#import…

Jay Dave
- 297
- 4
- 11
1
vote
2 answers
ld: 2 duplicate symbols for architecture x86_64
I am a beginner in iOS development. I am developing an application in Xcode 6.4 and I want create a SQlite database in Project. When I am trying to add constant, connection manager and query helper classes in bundle file and build project, I have…

Jaywant Khedkar
- 5,941
- 2
- 44
- 55
1
vote
1 answer
Error cocos3d + Storyboard?
I did an Example like CC3DemoMultiScene in iOS objective-c, I follow the same code thing like in example
my AppDelegate follows:
#import "AppDelegate.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
-…

user_Dennis_Mostajo
- 2,279
- 4
- 28
- 38
1
vote
2 answers
Editing an Array Saved to User Defaults SWIFT
I have been trying to read data from an Array that is saved to User Defaults but the object types cause conflicts.
if NSUserDefaults.standardUserDefaults().valueForKey("data")==nil{
let arrya : Array = ["Apple", "Apricot", "Banana",…

Daniel
- 3,188
- 14
- 34
1
vote
2 answers
Dynamically Moving (Animating) a UITextField
I have been trying to animate a UITextField so that its y position increases by 50px. Basically, it moves up by fifty pixels. This is my code:
@IBAction func textField(sender: AnyObject) {
let x = self.pw.frame.origin.x
let y =…

Daniel
- 3,188
- 14
- 34
1
vote
2 answers
Swift - Using value from UISlider IBAction in another function
This is a super basic question that is troubling me.
I have a UIslider IBAction that is generating a Double (var = rounded). I want to use this double in viewDidLoad. but getting the error "Use of unresolved identifier 'rounded'"
@IBAction func…

Joe
- 3,772
- 3
- 33
- 64
1
vote
1 answer
Checking if Nodes are SKShapeNodes
In my simple game, I need to remove all SKShapeNodes before the next step happens. Here is the code that I have:
for child in self.children(){
if(child==SKShapeNode(){
child.removeFromParent()
}
}
This does not work because Xcode…

Daniel
- 3,188
- 14
- 34
1
vote
1 answer
Deprecated segues in Xcode 6.4
So I followed the tutorial on making a segue here:
https://developer.apple.com/library/ios/recipes/xcode_help-IB_storyboard/chapters/StoryboardSegue.html
When I Ctrl-drag from a button to a view controller I get the options Push, Modal, Popover,…

user1354603
- 4,034
- 4
- 31
- 43
1
vote
1 answer
Simulator options won't show in Xcode 6.4
I don't get the option to run my app on a certain simulator or anything. I'm trying to upload my app to iTunes Connect but it won't even let me.

Amit Kalra
- 4,085
- 6
- 28
- 44
1
vote
3 answers
Random Number Generator - arc4Random - Numbers can not be same
I have a random number generator using arc4Random and integers with three numbers, number1, number2, number3, in the range 1 - 3. A zero is not permitted. That part I have sorted due to a previous request on here, however, when the test button is…

Del Hinds
- 2,887
- 4
- 12
- 12
1
vote
1 answer
Device picker gone in Xcode
My device picker at the top of my Xcode window has disappeared. I'm running Xcode 6.4 on El Capitan. This means that I can only run my app on an iPhone 6 simulator. I can't even port my app to my phone to test it.

Isaac Wasserman
- 1,461
- 4
- 19
- 39