Refers to the iPhone software development kit, version 3.2.
Questions tagged [iphone-sdk-3.2]
129 questions
0
votes
1 answer
Application crashes when running in iPhone simulator 3.2 (Works fine in simulator 3.0)
I just upgraded to SDK 3.2. My application runs in Simulator 3.0 in debug mode but when I change the Simulator to run with 3.2 it crashes with EXEC_BAD_ACCESS.
It is crashing at objc_msgsend method.
int main(int argc, char *argv[])…

amitabh
- 81
- 1
- 3
0
votes
2 answers
expected ":" before "]" token + confused by earlier errors, bailing out
Ok so im at my wit's end here. I have tried every imaginable thing to get rid of these errors
heres my code:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// Navigation logic may go here. Create…

begna112
- 399
- 2
- 6
- 14
0
votes
1 answer
iPhone OS 3.2 File Sharing Path
Currently I have this for my file path and file...
NSURL *storeUrl = [NSURL fileURLWithPath: [[self applicationDocumentsDirectory] stringByAppendingPathComponent: @"Shared\PartyPlanner.sqlite"]];
This allows me to share the file with iTunes, but…

OscarTheGrouch
- 2,374
- 4
- 28
- 39
0
votes
4 answers
Shall I start learning iPhone SDK 3.2 when 4.0 is about to be publicly available?
Just became an iPhone developer. I'm completely new to this, and not really sure whether I should start learning SDK version 3.2 or 4.0. I found tons of videos and tutorials for 3.2, not a lot for 4.0.
So shall I start with 3.2 and then worry about…

KeyStroke
- 1,455
- 5
- 19
- 24
0
votes
1 answer
launching iphone app in itunes store help
I developed an iPhone app using UITablesView and database in the background.
I want to know furthur step for it like after completing the app development how to proceed furthur for launching it in itunes store.
Can anyone help me in detail about…

Adusum
- 1
0
votes
1 answer
how to set and access variable values from another classess
I am modifying QuartzDemo example app and want to do set and read values of integer type variables in other classes which are already included.
For example, in MainViewController.m I want to set a numeric value (simple numbers from 1-100) to a…

Okta
- 70
- 10
0
votes
1 answer
iPhone: Insert New Row at Row One of a Table View
I capture values from three text fields labeled to, from and message.
When the user fills in these three text fields and hits a button, I need the values in these three textfield to be displayed in a new row 1 of a table view i.e. the new row should…

Shishir.bobby
- 10,994
- 21
- 71
- 100
0
votes
1 answer
MPMoviePlayerController problem at start
I have a problem with MPMoviePlayerController, because when I start it in fullscreen it exists, but the song is still playing. I added the MPMoviePlayerDidExitFullscreenNotification notification and it says that when the video starts playin it…

Infinite Possibilities
- 7,415
- 13
- 55
- 118
0
votes
2 answers
How does the iPhone know which OpenGL ES context to use between 1.1 and 2.0?
I've been digging around the net recently and noticed some video tutorials show an older template (pre SDK 3.2) with one OpenGL ES context. Now there are two of them, which, I've gleaned are the two versions of OpenGL ES available on the newer…

Moshe
- 57,511
- 78
- 272
- 425
0
votes
2 answers
Working with iPhone OS 3.2 only classes
How would you write a universal app that uses classes introduced in iPhone OS 3.2, such as UIPopoverController and UISplitViewController? On Jeff LaMarche's blog about this, Ole provides a method for instantiating these objects; you would…

donkim
- 13,119
- 3
- 42
- 47
0
votes
2 answers
NSData release is not reclaiming memory
iPhoneOS 3.2
I use NSKeyedUnarchiver's unarchiveObjectWithFile: to load a custom object that contains a single large NSData and another much smaller object. The dealloc method in my custom object gets called, the NSData object is released, its…

ctpenrose
- 1,467
- 2
- 18
- 28
0
votes
1 answer
Change/check minimum iPhone OS for Universal apps?
The dropdown in XCode shows a base SDK of 3.2, but my iPod Touch (2nd generation), running OS 3.1.3, will run the app just fine in debug mode. (Command + Return/Enter)
What is the actual base SDK of my iPhone/iPod touch version of the app and how…

Moshe
- 57,511
- 78
- 272
- 425
0
votes
1 answer
iPhone SDK 3.2 UIGestureRecognizer interfering with UIView animations?
Are there known issues with gesture recognizers and the UIView class methods for animation?
I am having problems with a sequence of animations on a UIImageView from UIGestureRecognizer callback. If the sequence of animations is started from a…

Brian Cooley
- 11,622
- 4
- 40
- 39
0
votes
2 answers
UINavigationController leftbutton problem
Here's my code:
UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(rightButtonPressed)];
[self.navigationItem setLeftBarButtonItem:leftButton];
[leftButton…

Infinite Possibilities
- 7,415
- 13
- 55
- 118
0
votes
2 answers
ASIHttpRequest problems. "unrecognized selector sent to instance"
I am experiencing problems using ASIHttpRequst. This is the error I get:
2010-04-11 20:47:08.176 citybikesPlus[5885:207] *** -[CALayer rackDone:]: unrecognized selector sent to instance 0x464a890
2010-04-11 20:47:08.176 citybikesPlus[5885:207] ***…

Paul Peelen
- 10,073
- 15
- 85
- 168