Questions tagged [xcode4.6.3]

the June 14, 2013 release of Apple's integrated development environment (IDE) for Mac OS X and iOS. This tag should only 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.

Xcode 4.6.3 is the June 14, 2013 release of Apple's integrated development environment (IDE) for Mac OS X and iOS.

This tag should only 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. Also, avoid adding this tag if your question would stay the same if you were not using Xcode.

Change Log

  • Xcode 4.6.3 fixes an issue where debugging in the iOS Simulator could hang on OS X 10.8.4.

Source: Release notes for Xcode

Notes

This is the last released version of the 4.x series.

See for more information.

49 questions
7
votes
2 answers

UITextField autocapitalizationType UITextAutocapitalizationTypeAllCharacters not working on device

You can set the autocapitalizationType property of a UITextField so all input is in upper case. I find that does work fine on the simulator (when actually tapping the simulator's keypad, not the Mac's keyboard), but not on the device? Everything…
RickJansen
  • 1,615
  • 18
  • 24
6
votes
1 answer

The version of iOS on “mydevice_name” is not supported by this installation of the iOS SDK

I have just updated my iPad with iOS 7.0 (11A465), and as per the instructions I have installed the iTunes compatible with it ie 11.1, but my iPad is not getting detected in xCode. my xCode version is 4.6.3. and organizer shows message as below: The…
5
votes
2 answers

Xcode 4.6.3 - Can't select tab bar item on Storyboard?

I'm currently on Xcode 4.6.3. I used storyboards in my project. Inside the storyboard is a tab bar controller and two table view controllers. I have the tab bar controller as the root view and I have it linked up with the two table view controllers…
aresz
  • 2,589
  • 6
  • 34
  • 51
5
votes
1 answer

ibtoold(2546,0x11208c000) malloc: *** auto malloc[2546]: error

I've been getting this error since I upgraded to OSX 10.9 Mavericks. Can anyone tell me what is happening? The app doesn't crash but I get this annoying error everytime I compile. Is there a way to fix this? ibtoold(2546,0x11208c000) malloc: ***…
Sonny G
  • 1,331
  • 1
  • 12
  • 22
4
votes
3 answers

Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang failed with exit code 1

I have some problem with my project. Can someone who's good in xcode help me up with that linker error on skype or teamviewer? I didn't made that code but it was working earlier but now it shows some linker…
Pradeep Mittal
  • 595
  • 1
  • 8
  • 19
3
votes
0 answers

Adding gcc 4.9 as a compiler option in Xcode

I just installed gcc 4.9 (with C11 support), and want to add it to Xcode 4.6.3's build options as a compiler option. I ran make and make install, and the packages are all there (under /usr/bin/gcc. Running gcc --version confirms that gcc 4.9 is…
Jules
  • 14,200
  • 13
  • 56
  • 101
2
votes
2 answers

Set the second tab as default tab in swift

I am using a tab bar which has 4 tabs and I want to set the second tab as default. I wrote the following code: self.tabBarController!.selectedIndex = 2 But I got the following error: fatal error: unexpectedly found nil while unwrapping an Optional…
Amit Raj
  • 1,358
  • 3
  • 22
  • 47
2
votes
1 answer

The package “BluetoothSDK.pkg” is untrusted

I have just reset my OS to 10.7 (latest my mac can go), and downloaded Xcode. Whenever I try to install the older iOS simulators I get an error The package “iPhoneSimulator… .pkg” is untrusted. And when installing command line tools, I get the error…
2
votes
2 answers

Multiple UITableViewController with multiple UITablesViewCells in a single UITableView

I am working on a list display in an iPad app. I have a screen with a UISegmentedController and a UITableView on the screen. The UITableViewControllers are each defined in a class, each with their own Delegate and DataSource methods for accessing…
2
votes
2 answers

XCode 5 in app purchase issue

On Xcode 4.6.3 this delegate method below works good: - (void)productsRequest:(SKProductsRequest*)aRequest didReceiveResponse:(SKProductsResponse*)response; But when I try to run the same project on Xcode 5 it does not work. Instead of invoke…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
2
votes
1 answer

CocoaPods installation issue using Xcode 5 and Xcode 4.6.3

After this command sudo gem install cocoapods I got error below. I think it is connected to the wrong path for Xcode 5. When I installed it I save it on Desktop but them moved it to the Application folder. I use Xcode 4.6.3 as well as Xcode 5. How…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
2
votes
2 answers

Undefined Symbols for custom C++ classes in Xcode 4.6.3. Works in Xcode 4.5.2

I have an iOS app that works fine in Xcode 4.5.2 but in Xcode 4.6.3 i get undefined symbols for my custom c++ classes. SomeClass.hpp class SomeClass{ public: SomeClass(); void doStuff(); } SomeClass.cpp #include…
user346443
  • 4,672
  • 15
  • 57
  • 80
2
votes
1 answer

Code sign error following fresh reinstall OS X and Xcode 4.6.3

I have recently completed an erase and fresh install of OS X and applications including Xcode. I can build & run any app to the iOS Simulator (6.1) without issue. I cannot however build and run to a device, although I could do this prior to the…
andrewbuilder
  • 3,629
  • 2
  • 24
  • 46
2
votes
1 answer

Xcode uses 16 gigs of RAM in 2 minutes

I'm working on a big project and I have some serious problems with Xcode RAM management. In the informative app I'm working on I have over 90 UIVIewControllers on my storyboard. Once I open my project and go to my storyboard file (just changing…
Segev
  • 19,035
  • 12
  • 80
  • 152
2
votes
2 answers

ScrollView wont work im stuck for 7 hours trying to fix it

I have been trying to implement scroll view all day and watched as many as 30 tutorials (ok not that many but enough) and many text tutorials later but still won't work as everyone has different methods... I'm going insane here, can someone help?…
1
2 3 4