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...
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 ...
I want to create a new custom property list in iphone applications.How to create in and how to load in iphone class.
...
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?
...
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 ...
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)?
...
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...
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
...
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...
Actually i am Using the same controller but want to reuse that ....how to differ in Between
...
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...
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.
...
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...
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?
...
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
...
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...
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...
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...
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...
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)];...