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
-1
votes
1 answer

ios-issue with sqlite-database path

Here is my code: It works for other methods but creating an issue here only. Here I am unable to insert data... What is the problem here?Code was working earlier perfectly. -(void) insertleadership { [self trunleadership]; // Setup the database…
Preetam Jadakar
  • 4,479
  • 2
  • 28
  • 58
-1
votes
2 answers

How do i change iOS SDK?

Possible Duplicate: How can i change my iOS SDK I have xCode 4.3.3 and iOs SDK 5.1 I need to be iOS SDK 4.3. How can i change my sdk? may be you have links on same problem? Thanx
-1
votes
1 answer

animating images which are stored in sqlite table

I have this snippet in my ViewDidAppear() photosImgView.animationImages = [NSArray arrayWithObjects: [UIImage imageNamed:@"blueButton.png"],[UIImage imageNamed:@"slider_ball.png"], [UIImage imageNamed:@"icon-small-50.png"], nil]; Here the images…
suvarna
  • 697
  • 2
  • 7
  • 10
-1
votes
2 answers

Set an image height = 70% inside an htmlString ( webView ) Xcode

I have a uiwebview loaded inside a UIScrollView..i Load inside the webView an HTMLString using this code : NSString * htmlString = [NSString stringWithFormat:@"\ \
Elias Rahme
  • 2,226
  • 3
  • 28
  • 53
-1
votes
1 answer

XCode Organizer recognizes my old developer profile

Back when I was still in school, I was granted a student license by my school so that students could develop iOS apps and install it on their devices. That was like 2 years ago. I just updated XCode to 4.4 today and I am having problem running my…
denniss
  • 17,229
  • 26
  • 92
  • 141
-1
votes
1 answer

Display multiple images in a single UIView

I want the user to pick images from the camera library and they will be displayed in individual image views which is inside a single view application. Any ideas, tutorial or code will be great. Thank you
-1
votes
1 answer

How to get two different version of executable in the same iPhone? using Xcode

kindly excuse if my question is very basic. I am using Xcode 4.3.3, and when i run the application i get the icon and with bottom line with HTH. Now I have fixed something in the code, and would like to run in the iPhone, but i do not want the…
Whoami
  • 13,930
  • 19
  • 84
  • 140
-1
votes
1 answer

Push Notification Development to Distribution Certificate issue iOS

i have changed the Development certificates to Distribution certificate. But getting below error while launching from xcode. error: failed to launch…
Bharathi D
  • 953
  • 1
  • 15
  • 28
-1
votes
2 answers

a way to remove empty value from the tableview?

New to objective c. I am using NSArray to populate my UITableView. is there a way to remove the blank from the array and from the cell.textLabel.text. This is what i have done: - (void)viewDidLoad { [super viewDidLoad]; alTableView.delegate…
sihao
  • 273
  • 2
  • 5
  • 19
-1
votes
1 answer

What's the difference between setValue:forKey: and setObject:forKey: for NSMutableArray?

Just that--I'm a newbie and I don't know which one to use in any situation.
Joel Derfner
  • 2,207
  • 6
  • 33
  • 45
-1
votes
1 answer

NSInvalidArgumentException error

I am trying to pass an object from one view controller to another but it gives an error which is *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[MapViewController setTMode:]: unrecognized selector sent to…
sihao
  • 273
  • 2
  • 5
  • 19
-1
votes
1 answer

How to change UIImageView Image with the same name

I create a Image with the code: UIImageView *Event01 = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Event01.jpg"]]; Event01.frame = CGRectMake(4, 48, 75, 75); Event01.contentMode = UIViewContentModeScaleAspectFill; Event01.clipsToBounds…
Xoltic
  • 230
  • 2
  • 7
-1
votes
1 answer

How do I populate tableview using cell?

to the point, i have custom cells, inside it has 2 label and 1 textfield. both label and textfield got input from user. i also have other view that has uitableview inside it. my question is how do i populate cell in uitableview? please help. this is…
SyntaxError
  • 161
  • 1
  • 2
  • 9
-1
votes
1 answer

Xcode Table View cell twitter

I just downloaded Xcode 4.4 and just started learning app development. I want to make a table view with rows that are divided into sections like the second row in the Twitter app like in this picture: https://i.stack.imgur.com/oGFkl.jpg I'm using…
apples
  • 13
  • 1
  • 6
-1
votes
5 answers

Is there a way to make a global label

I want to change the text of a label from another controller you know like defining a global variable.
user1540999
  • 86
  • 1
  • 3