iphone

iphone ui control to manage multiple things

hi all! how is called this ui control to manage multiple things like in the contacts or for classic user/passwords? like this for example: ...

Split strings error whats wrong with it

//Seperate into arrays NSString *NumberItems = [RawMessage componentsSeparatedByString:@"|"]; //Create the strings NSString *number1 = [NumberItems objectAtIndex:0]; NSString *number2 = [NumberItems objectAtIndex:1]; NSString *number3 = [NumberItems objectAtIndex:2]; NSString *number4 = [NumberItems objectAtIndex:3]; NSString...

Does any body has simple application on ASIHttpRequest.

Hi, Does anybody has a simple and easy understandable application on ASIHtttpRequest. ...

UILabel text margin

Hi everyone. I think I'm missing something really simple here but I'm looking to set the left inset/margin of a UILabel and can't seem to see a method to do so. The label has a background set so it would be ideal to inset the text by 10px or so on the left hand side. Any help would be appreciated. Thanks, Laurence ...

HTML5 iPhone dynamic caching of images

Hi We are building web applications for the iPhone that work offline. But we are having difficulties caching dynamic images. Please read on and I'll show by example exactly what I mean and what we have done so far. So for example let's say we are building a simple list application with just 1 page. The application's only purpose is to ...

How to identify buttons click event which is on the custom cell?

Hi!I have custom cell which contains number of rows in it.i want to write it's Action(click event) so how should i identify which buttons clicked and how can i write it's click event for it.Please give me some guidelines for that.i have not implemented yet. ...

UINavigationView in modal view

Hi! I would like to place a UINavigation View within a Modal view but I am having loads of problems. I managed to get the modal view working, but when trying to put a UINavigationController in it it just comes up with a blank screen. Does anybody know how to do that properly? ...

ios4 alert view problem

Has anyone had this problem with iOS4. I am getting the alert view shift up the first time and without dismissing if you send the app to background mode and bring it back then the alert is placed correctly. Alert view is also flashing if it is open while I send the app into background. Any help to get around this problem will be great.....

iphone UIPickerView select row

Hi all, I have my view that contains the UIPickerView... I tried to make this code: [self.picker selectRow:rowSelected inComponent:0 animated:true]; to select the row with index rowSelected, but this doesn't work... I need to put this in viewdidload?? ...

iphone UIPickerView reduce font of the items

Hi all.. it's possible reduce or change the font of the items of the uipickerview? thanks in advance! ...

Test ABMutableMultiValue Reference for Non-Existent property

Programmatically, any help on how one can test for a non-existent multivalue record property in Xcode? That is, not every person record has an email or phone in the address book. Three cases exist: (1) The person record has both at least one email and one phone, (2) The person record may have only a phone, and (3) The person record may...

Passing a value back from a view

Hey everybody, I had a question about editing the value of a table cell and returning the edited value back to the original cell. I have a UITableView which contains 5 sections of 1 row each. Within cellForRowAtIndexPath I have the following: static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReu...

Problem in inserting data in SQLite?

Hi i am using FMDB to retrieve data from SQLITE database. db = [[FMDatabase alloc] initWithPath:path]; [db open]; FMResultSet *fResult= [db executeQuery:@"SELECT * FROM Users"]; aUsers = [[NSMutableArray alloc] init]; while([fResult next]) { userData = [fResult stringForColumn:@"Name"]; lblUsers.text=[lblUsers.text...

Software Control iPhone Ringer Volume

Other people have asked and the answers state that this is not possible. But would anyone know if the feature request made it in to iOS 4.0 then? Thanks. ...

Where are the cache files of NSFetchedResultsController located?

I am trying to see if cache files are successfully created but can't find their location on the disk (neither on simulator nor iPhone device) Any ideas? ...

How to get the favorites list from the address book in Iphone sdk?

Hi Guys, I need a help from your side as I am new to iPhone sdk. Actually I need to access the favorite contacts in the Iphone to my application. Can any one suggest me how to access the favorite contacts list in iPhone. Thanks in advance, Monish. ...

How do I detect orientation on app launch for splash screen animation on iPad!!

Hi I have an app and I have two *.pngs for default splash screen: Default-Landscape.png Default-Portrait.png What I want is to animate this default splash screen away when my app is loaded and ready to go. To achieve this I would normally present an UIImageView with either default-landscape or default-portrait (depending on the devic...

problem in creating - Provisioning Portal.

i'm trying to create an In-App purchase. but i'm facing a problem in creating - Provisioning Portal. After creating an APP ID, On the “Configure App ID” screen, i'm unable to get that option “Enable In App Purchase”. what could be the possible error i'm making in the procedure ? ...

UIwindows class

I saw a video tutorial on iphone development without nib files. As anybody who has programmed without nib files, you will know that you have to remove the nib file from the plist and then add in code in the main.m function UIApplication. Anyway regarding the following code: (from app delegate class) - (BOOL)applicationUIApplication *...

Is there a fiddler like app for IPhone to see what HTTP calls are being made?

This is for troubleshooting my app on IPhone. ...