Questions tagged [xcode4.3]

Xcode is Apple's integrated development environment (IDE) for Mac OS X and iOS. Xcode 4.3 (4E109) was officially released February 16, 2012. This tag should only be used for questions about this specific version of Xcode itself, and not for general Mac or iPhone OS programming topics. Use [cocoa] for Mac programming questions, or [cocoa-touch] for iOS (formerly iPhone OS) programming questions.

Xcode is Apple's integrated development environment (IDE) for development for its Mac OS X () and iOS (/) platforms. Documentation for Xcode 4.3 can be found in Apple's Highlights Found in Xcode 4.3.

Xcode 4.3 is used to produce software applications for Mac OS X and iOS. Xcode 4.3 (4E109) was officially released February 16, 2012, and Supports OS X 10.7 Lion +.

This tag covers:

  • Project organization
  • Source code editing
  • Build system
  • Unit testing
  • Interface Builder (in Xcode 4 and later only; it is separate in 3 and earlier)

Xcode comes with Apple's Mac OS X and iOS SDKs bundled, but that does not mean questions about the use of those SDKs are questions about the IDE. Consider what changes your question would require if you were using vi to edit and make to build; if your question would remain unchanged, then it is not an Xcode question, so you should not give your question the tag. Use the (Mac) and/or (iOS) tags instead.

See for more information.

1056 questions
0
votes
1 answer

Xcode 4 for Dummies: Why are Storyboard Settings not Being Applied When the App Runs?

SOLUTION Make sure in the plist that the storyboard name is listed as the main storyboard file name. I have a Storyboard with a UINavigationViewController that's connected to a NavigationViewController class and it's set as the UIWindow…
Gup3rSuR4c
  • 9,145
  • 10
  • 68
  • 126
0
votes
2 answers

Arrows at the bottom of the toolbar in iOS apps

Was wondering if anyone knew how to implement arrows in the bottom toolbar as shown below? Would be extremely grateful if someone could give me insight into this. I have seen a lot of apps with such arrows to navigate through pages and cannot seem…
Masterminder
  • 1,127
  • 7
  • 21
  • 31
0
votes
2 answers

"supported external accessory protocols" and info.plist in xcode

I read through Apple's EADemo project. I then attempted my own. But when I made my own, there's no place to put the supported protocol string. In Apple's EADemo project, if you look at the project info or plist, there's a spot called "Supported…
Jay Kim
  • 843
  • 4
  • 12
  • 28
0
votes
1 answer

can't play sound on Xcode 4.3

I am using Xcode 4.3 and i have a problem with playing sound... I downloaded this project from an answer i found here from but when i change his file with mine http://dl.dropbox.com/u/63377498/AudioText.zip i can't hear anything. Can be a problem of…
arniotaki
  • 2,175
  • 2
  • 23
  • 26
0
votes
2 answers

collect data from 3 row UIPickerView

I have 3 row data in UIPickerView that is timeHour, timeMinute, timeSecond. How to collect data, show it at my labelTime after I select it from UIPickerView? I am using this code below but it only collect my first row data (timeHour). -…
Piyo
  • 181
  • 1
  • 2
  • 9
0
votes
0 answers

How we can click UITableViewCell to jump into another View?

When I use storyboard in Xcode4 ,not as xib before, I click the UITableViewCell in UITableView to push View B,B have a tableView and other buttons and labels. if the B inherit from UIViewController, when I push B,the background of B is black! if…
0
votes
2 answers

Disabling the keyboard interaction in a Text View in iOS5, XCode 4.3.2

Can someone please tell me how to disable the keyboard in a Text View? Whenever I click on words, the keyboard pops up and I am able to manipulate my original text. I just want it to be selectable, so you can copy, paste. I prefer this to be…
Masterminder
  • 1,127
  • 7
  • 21
  • 31
0
votes
1 answer

how to play video from a webservice which returns video as chunks of data

I need to play a video in iPad, which is to be retrive from a web service. I can not directly give a url to MPMoviePlayerController to play the video. I need to create a SOAP web request to get the video from a webservice. This webservice returns…
AbhishekS
  • 1
  • 4
0
votes
1 answer

'Uncategorized' Xcode Error

I'm having this WEIRD Xcode error - Uncategorized error. It seems to look for a file which doesn't exist. The problem is that I don't see any reference to that file on my project. Is there any place else that Xcode saves its project file…
Rizon
  • 1,516
  • 4
  • 25
  • 45
0
votes
1 answer

In XCode 4.3 how can I search other paths for frameworks and libraries to link to my project?

I am using XCode 4.3.3 and want to include custom frameworks (in my case OCMock) into my Mac OS X project. I have put OCMock.framework (version 2.0) into /Library/Frameworks for now and when I open the build phases tab for my unit testing target…
malte
  • 190
  • 1
  • 10
0
votes
1 answer

juggernaut cocoa for iphone breaks with Apple Mach-O Linker (id) Error

I tried using juggernaut cocoa: https://github.com/fpotter/juggernaut-cocoa Added this line to my code: JuggernautClient *client = [[JuggernautClient alloc] initWithHost:@"myhost" port:1740]; [client subscribe:[NSString…
JohnMerlino
  • 3,900
  • 4
  • 57
  • 89
0
votes
3 answers

Create frame and put button inside of frame in Objective-C

I want to create view with 52 square or button (for 52 week in a year in one page) with grid but I don't know how should I align them or how should I put them in a frame (you will have 13 rows and 4 columns), but if you try this code it's not algin…
user1344851
0
votes
1 answer

cellForRowAtIndexPath only called for objects that are added while allocating datasource

I know there are a lot of such questions on stackoverflow but I couldn't find the answer to mine. I am trying to populate my UITableView from an Array that is a member of DetailViewController: UITableViewController. Problem is that I don't have…
shaffooo
  • 1,478
  • 23
  • 28
0
votes
0 answers

Xcode Retrieve, Perform Function and Add Data to SQL DB

I think I'm making this more complicated than it has to be. I have an Sqlite DB in my app. I'm trying to pull the Lat/Long of each location, get the distance between the iPhone and the location and insert that distance back into the DB. I would…
0
votes
1 answer

Xcode 4.3 Storyboard - Passing table cell value from one tab bar to the second tab bar without navigation controller

Please help me to figure this out. I am having two tab bar items in a tab bar application. First tab bar view with UITableView and second tab bar view with a label. I trying to pass table cell value to second tab view, by clicking a table cell and…