One friend's iphone developer account have only developer tab in iphone portal program, no distribution tab exists.
can he still submit app to app store? if yes how?
I was wondering if anyone knows if you can run the iPhone SDK on an iPad. Tried looking through apple.com, but didn't find anything useful...
I want to be able to develop -- from start to finish -- an iPhone app on the iPad and was wondering if that's possible...
When building a new iPhone app in Xcode, I'm getting this error:
codesign error: code signing identity
'iphone developer' does not match any
code-signing certificate in your
keychain. once added to the keychain,
touch a file or clean the project to
continue.
What's the fix?
where can i get the iphone sdk 3.1? i want to create iphone applications ut i dont want to enroll in the apple dev. program. i dont need the latest sdk because i dont have a snow leopard but the leopard os only..
Hello all
I was wondering how it's possible to find out if an image in the iPhone photo library is isotropic or anisotropic. Basically how many millimeters each pixel measures in height and in width.
In JPG images the information is hardcoded into the data stream so it's possible to do by simply pointing a const char* to the image file, but I'm not sure I can do that with the data the iPhone image returns.
Thank you in advance
Is it still possible to find the 3.1.3 SDK (w/ Xcode) for iPhone development on Leopard?
I haven't upgraded to Snow Leopard yet, but I need to interact with devices running 3.1.3. I should have grabbed that version when it was up, but I didn't.
So, does anyone have a link to the 3.1.3 iPhone SDK (w/ Xcode)?
I have provided support for two languages, English and Chinese, in my iPhone application. I use string files for the languages using "key"-"value" pairs and my application displays the appropriate language using NSLocalizedString(@"Fund red not red?", @"").
I get only Chinese text when I run the app in XCode. How can I switch to different languages in XCode (iPhone simulator)?
I have a WebView which loads a PDF file:
[myWebView loadRequest:[NSURLRequest requestWithURL:[NSURL
fileURLWithPath:[[NSBundle mainBundle] pathForResource:fileName
ofType:@"pdf"]isDirectory:NO]]];
It works fine on iPhoneOS 2.x but on iPhone 3.0, when I tap the PDF for scrolling, this error appears, and the app crash:
-[NSCFDictionary _absoluteLinkURL]: unrecognized selector sent to instance
0x1c0230 Terminating app due to
uncaught exception
'NSInvalidArgumentException', reason:
'-[NSCFDictionary
_absoluteLinkURL]: unrecognized selector sent to instance 0x1c0230'
Hi All,
I have created a static library following this link.
But I am facing Problems in using the library. For reference on how to use static libraries in an iPhone project I followed this link .
But I am stil struggling with the "How to implement static libraries in any other iPhone project?" question.
Thank you all.
Hello, i am new to iPhone programming and i was thinking of developing an sms application through which user can send and receive sms inside my application similar to iPhone own message application.i think apple doesn't provide any API regarding accessing sms inbox?? is there any other way around it??
I have a program for the iPhone that is supposed to be doing intelligent things given a list of filenames. I'm looking for the iPhone take on something like /etc/mime.types or something similar. Does this exist?
Can iPhone apps have role based login?
In my application I have to display the content according to the role of the user (employee, visitor). Till now I havent seen any app with role based login for iphone.
Can I develop role based login? is there any restriction from apple side for these kind of logins to approve the app?
I can save image to iPhone (iPhone Photo Albums \ Saved Photos) with
UIImageWriteToSavedPhotosAlbum(image, onCompleteTarget, onCompleteSelector, contextInfoToCompleteSelector);
But if there any way to check, if current image was already saved (to save it only once)?
Why would this run fine on the iPhone simulator... but the database can't be
opened on an iPhone device?
sqlite3 *g_Db = nil;
BOOL OpenDatabase(NSString *databaseName)
{
if(sqlite3_open([databaseName UTF8String], &g_Db) == SQLITE_OK)
{
NSLog(@"Opened db ok");
return(YES);
}
else
{
NSLog(@"Can't open the db");
sqlite3_close(g_Db);
g_Db = nil;
return(NO);
}
}
I want to develop a little iPhone application, just for my personal needs. I don't want to sell it or give it to anybody as it will not be useful to anybody.
Can I have this application on my iPod/iPhone, without having to pay/suscribe/be on the Apple store ?
Hi
Is there any way we can convert text to speech in an iPhone app?
Is it possible using the SDK?
Thanks
Are there any third-party TTS engines available for the iPhone? (AFAIK Acapela is not yet released)
Hi all,
i am developing a mobile client to sync images from iphone photo gallery to amazon s3,so is there any sync services libraries that can help me in this regard..
Also is there any library to access the iphone photo gallery,I just wanted to pick all photos, randomly, from the images stored on the device with no user interaction?
Thanks in advance.......
Hi folks,
I am getting information (id,name,address) in the form of xml string form the .net web server.
i am using NSXMlparsing to parse this xml string in iphoneos4.0.
Now i need to do the same application in iphoneos 2.0.
i found Nsxmlparsing delegate should work on 4.0 and later.
Can any one please suggest which method is suitable to parse xml string and sample tutorial.
Thank u in advance.
hi all,
Apple announces the iPhoneOS4 with 1500 new API and some greater improvement
I want to know the details the APIs. Features which are not being highlighted in press releases but might be very useful for Developer like Calendar, SMS, Photo library, Quick look etc
Please provide a helpful link which provide the List of APIs
I am looking for a way to capture a screenshot on the iPhone with the top status bar included, I am currently using the following code:
UIGraphicsBeginImageContext(self.view.bounds.size); //self.view.window.frame.size
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);
The above code sucessfully takes a screenshot of the iPhone UIView but does not include the top status bar (In its place is just a blank 20px space).
I installed the new GM iPhone sdk. When I try to compile against iOS 3.0, it claims that libraries are
missing. What now? I think that I have the install DMG somewhere for 3.2.2, if that helps.