Questions tagged [xcode5]

Xcode 5 is Apple's integrated development environment (IDE). Xcode 5.0 included the SDKs for Mac OS X 10.8 and iOS 7. *Do not use this tag unless your question specifically involves the Xcode IDE!*

Xcode 5 is an Apple integrated development environment (IDE). This version of Xcode includes the SDKs for Mac OS X 10.8 and iOS 7. It is available free on the Mac App Store and as a downloadable disk image file (DMG) from http://developer.apple.com/xcode

This tag should only be used for questions about the Xcode 5 integrated development environment (IDE) itself, and not for general Mac or iOS programming topics. Use for Mac programming questions, and or for iOS programming questions.

If the question is related to the Xcode IDE in general (not specific to Xcode 5), use the tag.

3988 questions
38
votes
3 answers

Unknown type name 'UIImage'

I've upgraded XCode from 5.1.1 to XCode 6.0.1 recently. Now everytime I want to define a new UIImage object I get this error: Unknown type name 'UIImage' Code: 1. Create a new project 2. Add Image View control to the storyboard 3. Reference the…
aenawi
  • 523
  • 1
  • 4
  • 8
38
votes
5 answers

XCode 5 Testing symbol "rT" means what?

I have 2 test classes in a XCode 5 project: ABCDataModelTests.{h,m} - (void)testAlwaysPassing { ... } ABCDataModelListColorsTests.m which inherits from ABCDataModelTests. - (void)testNumberOfListColorsGreaterThan7 { ... } When I ran the test, I…
platypus
  • 1,165
  • 5
  • 27
  • 47
38
votes
12 answers

iOS 7 custom back button

I want to use custom back button. in iOS 6 everything is perfect but iOS 7 is strange. [[UIBarButtonItem appearance] setBackButtonBackgroundImage:[[UIImage imageNamed:@"back_button_normal"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 12.0, 0,…
storoj
  • 1,851
  • 2
  • 18
  • 25
38
votes
6 answers

How do you update the app icons and launch images to support IOS 6 and 7 simultaneously?

I have been stymied figuring out how to release an application from Xcode5 that supports IOS7 AND IOS 6+ in the same build, with assets (icons and splash screens) that load correctly for both, AND still render the assets for IOS 6 correctly. The…
AndyBean
  • 917
  • 1
  • 8
  • 13
37
votes
1 answer

How to auto increment the build number in Xcode 5

I was wondering if Xcode 5 is providing a setting to automatically count up the Build number found under General in the Identity section of the project navigator. But afaik you still have to do it with scripting, using PlistBuddy. One simple…
seinfeld
  • 1,686
  • 1
  • 17
  • 18
37
votes
2 answers

Totally change entire "header" on ALL new files in Xcode

When you create any file in Xcode you get:** Is there a way to completely CHANGE that template? (It's trivial to change the corporate name, etc. How to change the actual template?) I do not care, at all, if I have to redo the change each time Xcode…
Fattie
  • 27,874
  • 70
  • 431
  • 719
37
votes
25 answers

Could not build module UIKit

Suddenly it stops building application in device. In simulator its working but when I connect the device and try to run it in device it gives me an error: Could not build module UIKit I tries a lot but couldn't solve it.
Hardik Shah
  • 1,683
  • 1
  • 11
  • 20
37
votes
9 answers

Remove Navigationbar's bottom border iOS7

Is there a way to delete the bottom border that iOS7 automatically displays under the navigationbar?
Gnamm
  • 633
  • 2
  • 8
  • 17
37
votes
4 answers

How to point Xcode to an old SDK so it can be used as a "Base SDK"?

My Mac's Setup: Volume A: OS X 10.8 Xcode 4.5 or later - 10.6 SDK IS NOT available as Base SDK Volume B: OS X 10.7 Xcode 4.3.3 - 10.6 SDK IS available as Base SDK Volume C: OS X 10.6 Xcode 4.2 - 10.6 SDK IS available as Base SDK On Volume A, I have…
Todd Ditchendorf
  • 11,217
  • 14
  • 69
  • 123
36
votes
1 answer

MVVM Sample / Example Implementation in iOS

HAs anyone implemented MVVM pattern in your iOS app without using ReactiveCocoa? Found lots of examples here, but all of them use Reactive Cocoa. I wanted a simple example of MVVM implementation.
Smitha
  • 6,110
  • 24
  • 90
  • 161
36
votes
1 answer

XCode 5: Is there any way to group/filter/sort what shows up in code-completion?

For a very simple object like this: @interface MyObject : NSObject @property(strong) NSObject* thingAboutMyObject; - (void) aThingToDo; - (void) moreToDo; - (void) yetAnotherAction; @end Someone working with MyObject gets code completion which…
J. Paulding
  • 494
  • 3
  • 9
36
votes
11 answers

Xcode continuous integration provisioning profile error

I am trying to setup continuous integration in Xcode 5 on Mavericks. If I have a bot do a new clean project build, it completes with no errors. If I have the bot do the build on my actual project, I get the following error: No matching provisioning…
lehn0058
  • 19,977
  • 15
  • 69
  • 109
36
votes
11 answers

can I change the font color of the datePicker in iOS7?

just downloaded my copy of xcode 5 and was wondering if anyone knows how I can change the color or size of the font in the date picker?
Jared Gross
  • 649
  • 3
  • 9
  • 23
36
votes
4 answers

No Round Rect Button in Xcode 5?

Is drag and drop of round rect button no longer available in Xcode 5? I can't seem to find it in the Interface Builder. I was guessing that this is one of the changes in iOS 7, but I just wanted to make sure.
juminoz
  • 3,168
  • 7
  • 35
  • 52
35
votes
2 answers

How do I migrate from SenTestingKit/OCUnit to XCTest?

I am in the process of migrating my project from Xcode 4.6.3 to Xcode 5.0.2. The project's unit tests were developed with SenTestingKit/OCUnit. Now when I am running the tests in Xcode 5, I get an error from the RunUnitTests script telling me…
herzbube
  • 13,158
  • 9
  • 45
  • 87