iphone

How to upload photos to Plixi (Tweetphoto) using Oauth?

Hi all, I am creating an iphone application in which I have to upload photos using different services. I am successful in uploading photos with Twitpic & YFrog but not able to do with Plixi. I am using Oauth ,as Twitter is not allowing Basic authentication. If anyone has tried with Plixi ,please help me out!! I have googled a lot but...

replace characters in a string

i have a sting in which i want to replace all characters(except special characters) by X.. i mean if i have a string str= mac,iphone & ipad are products of apple theis should be converted to str= XXX,XXXXXX & XXXX XXX XXXXXXXX XX XXXXX i know this can be done by finding all special characters and note their position and then replace ...

How to create a new custom property list in iPhone Applications

I want to create a new custom property list in iphone applications.How to create in and how to load in iphone class. ...

How to change iphone's orientation while recording a video?

Hi folks i am trying to obtain the frames of video, convert it into an image and do some image processing and to display the same immediately. Its more like a mirror app. Now the problem is device's orientation while recording video. How can i change it to portrait mode? Any idea? ...

How save add items on memory after close app ?

Why my add items dont save on memory? When I back to RootViewController my list disappear, What happened ? Code for add and work fine... - (IBAction) addButtonPressed: (id)sender { NSLog(@"Add button pressed!"); addPosto *addposto = [[addPosto alloc] initWithNibName:@"postoDictionary" bundle:nil]; UINavigationController *addNavCon ...

What information is stored in EFIX/JPEG photos taken on the iPhone with geotagging enabled?

I know that some of this data is viewable in iPhoto, such as latitude, longitude, and altitude, but is there more than this available? More specifically I am wanting to get the direction of the image as well, which is part of the EXIF format. Or does something other than geotagging need to be enabled (something to do with the compass)? ...

identify the User.

Hi, I want to make an application that has some views for information display. Now if i install that app in iPhone then it should display the info. Now if i install that app in my iPad then the app should recognize device and display the info related to my account only. Now is there any way to find the single user of two devices wit...

Bundle ID not appearing in the drop down in iTunes Connect Add New Application

This morning we are not able to see the newly added bundle ids in the drop when we attempt to add a new app! Is there a limit on the number of bundle id's one developer account can create? Anyone else facing this situation? Thanks ...

some cell in table view should be checkmarked..???

I am making app where a list of countries to be shown. when the first time app runs the user selects the no. of countries..i stored that list in nsuser defaults..i want to checkmark those countries in the tableview when the app runs again for second time... one more problem is when i scroll through the table view..and again comes to th...

How to reuse the same UIViewController ..

Actually i am Using the same controller but want to reuse that ....how to differ in Between ...

Executing Multiple queries

HI all, i was folloeing this tutorial Sample code it was working great.. my doubht is, to execute single query they executed in this method "+ (void) getInitialDataToDisplay:(NSString *)dbPath {" as "select coffeeID, coffeeName from coffee"" thats fine. but for my next view if i want execute a new query like "select * from cof...

jquery mobile web application

Hello folks., i would like to develop iPhone App something similar to this link i am planning to develop this using jQuery. i would like to have some pointers as how to set database and access it. ...

Session Management in iPhone

Hi, I need to manage server sessions in iPhone. As I researched there are many ways. One way is to use the apple native method calls by make use of the NSURLConnection and NSHTTPCookieStorage classes. However using the 3rd party libraries like ASIHttpRequest can also be helpful cos it already has implemented the above scenarios. So what...

setting application expire period

Can we make application expire after 1 year and put it on App Store? Is it legal or illegal to offer application to customers without going through the App Store / ITunes? ...

solving log in iphone objective c calculations

how can a logarithm be solved on the iphone. I tried using different methods with the log2f and all those however I wasnt sure exactly how to make a log lets say log (base4) 5 = x and x would be given as the answer ...

Why is this object being released?

I'm getting an EXC_BAD_ACCESS when releasing newImage on the last line of the following code snippet: UIGraphicsBeginImageContext(newSize); [image drawInRect:CGRectMake(0,0,newSize.width,newSize.height)]; UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); [self setImageToSave:newImage]; [newI...

How to display images of type .jpeg or .gif or .tiff in iphone sdk using objective-c

I am facing a problem while displaying the image in iphone. I used the below code but it work only for .png files. UIImageView* imageView=[[UIImageView alloc] initWithFrame:CGRectMake(6,10, 80, 80)]; imageView.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:customerListObject.customerImage]]]; [my...

tranisition from iphone to ipad nibs

hello, i am wondering how its possible to have an iphone nib that has some uitextfields and some labels to be automatically repotitioned if the device is an ipad. (i dont want a second nib) im trying to get my iphone nib to autoresize in the middle of the screen if the device is an ipad so that all the text fields and buttons arent place...

Model a chess board in iPhone

Hi, I am developing a board game. I am wondering how one can use Core Animation or any other technology to design a chess board like (someone else's app): In the picture, the chess boards has a thick border which I am not sure how to model. Should we model the chess board as an image and place chess pieces onto the image? But then it...

UIPickerView with custom View and labels not scrolling

I'm using the following code to add a label and a view to a UIPickerView. - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view { CustomPickerView *customView = [[CustomPickerView alloc] initWithFrame:CGRectMake(0.0, 0.0, 180, 32)];...