Hi all,
I wanted to integrate advertising platform into my iPhone App and I was wondering which one is better to use Admob or iAd and why?
Thanks in advance,
Sarah
What resources can you recommend for learning how to architect a iPhone application?
Background of the question is that most of the resources explain the usage of a single class or concept (and i appreciate that a lot to learn something about the specific topic) but as far as i can see they lack unfortunately to describe how to put things together for typical real world applications.
Hello!!!
can anyone tell me (code sample woudl be awesome) how to get the the secure wi-fi userid and password for the current logged user on the iphone
for example:
Wi-fi settings for a network using WPA2 Enterprise (network/username/password)
how can I found out who's logged for said network ??
Thanks in advance!!!
Cheers
Hi,
I need to capture a image in a motion.Can I use video mode in iphone so that i can capture the image.
If it can happen Please let me know the class that need to be used.
Thanks,
Kishore
Hello,
I added ffmpeg iphone port into my library and I can able to use a few of its functions like avcodec_init(),.. without any errors.
But when I include this function call "avcodec_register_all" Xcode is giving error after compilation
The error message is :
*---------------
ld: ldr 12-bit displacement out of range (4276 max +/-4096) in _CFRelease$stub in _CFRelease$stub from /Users/foxit/Documents/CameraTest/build/CameraTest.build/Debug-iphoneos/CameraTest.build/Objects-normal/armv6/CameraTest
Command /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1
*-------------
Does anyone know whats wrong with this ?
Regards,
Raghu
Hi All,
Below is the link for making the cover flow model in iphone. This is a sample tutorial.
http://www.chaosinmotion.com/flowcover.m
Can any one tell me how can i make the cover flow model to adjust some where up on the screen. Currently it is in the centre of the screen i want if about 70 to 80pixels to move up in the screen.
Your help will be highly appreciated.
Which parts must I redo after renewing my iPhone Dev Program account?
My devices tell me that my provisioning profiles are out of date. So now I must go there and do the entire stuff again? Also that certificate in the key chain?
An activity indicator view is useful in many applications.
Any ideas about how to add, activiate and dismiss an activity indicator view on iPhone?
All the methods for this are welcomed here.
This is for iPhone Developers. What would be the code for an event handler? For my project I want it so that on collision display an animation for 3 seconds....How would I go around doing this?
hello everyone i am a new bee in iphone i have 7 to 8 webservices in my project i want to call and parse thoes 7 to 8 webservice on a single button clicked event please guide me how can i do that a sample code would be a boost to me
What's the deal with iPhone's GPS? I never get a good reading when i'm in my office building, or in my room. What really ticks it! and what doesn't? Please help me understand the assisted GPS science.
Hey Guys
Im thinking about making a suggestion box for my next iPhone app.
Whats the best way to go about this? I was thinking an ModalViewController, a text box that emails out?
Are there any other(better ways) to do it?
Any expertise would be appreciated
Cheers
Sam
Hello,
I am using FacebookConnect on the iPhone to integrate my app with Facebook.
Unfortunatly I've always "cookies required" when trying to login.
Are you also encountering this issue or do you know what may cause this issue?
Thanks in advance for your help :)
Regards,
Hello,
I have an iPhone app that loads the following URL:
http://maps.google.com?q=Apple Stores&ll=37.331689,-122.030731&z=3
As expected, the google maps app loads on the phone, but zooms to the entire US. It does not appear to be respecting the z= parameter, or at least, not allowing a zoom level that shows stores in the area.
How hard would it be to port a flash game to the iPhone. Obviously Flash CS5 is no longer an options, I still would like to know if there's anything that can be reused? or do I have to write everything from scratch (Is Obj-C that different than ActionScript?) Is there any other shortcuts?
Also, if anyone has done this before please share your experience.
Writing an app that will include the ability to decompress zip and rar files. I think I'm OK on how to handle the .zips but .rars seem a little more trouble. I noticed that rarlabs has source available but it's C++. Is there a way to compile, wrap or otherwise use this code within an iPhone app?
Reference: http://www.rarlab.com/rar_add.htm
Open to alternate suggestions on how to handle .rar files as well.
I'm still pretty much a newbie so please explain in small words :)
I heard in this TUAW Article that iPhone apps should stop using the Documents folder to store files. Instead they should use the library folder. How do you access the Library folder to store files to it?
Thanks in advance!
hi friends,
I am making an iphone game , In that I want to upload score on face book. I am new to face book codes, I've got it's API from github.com. But I don't know how to write or post directly my message on wall of face book of log in account. I've done log in portion.
Can any one help me????
Have looked so long for a library specialized in dealing with iPhone Accelerometer but couldn't find anything.
I have made some few sample apps, but none reaches a level of accuracy as in Labyrinth games for example, so any idea about a library for that? Or maybe an open source app?
Would be better if it's integrated in a Physics library
Is there any URL from google maps, that returns me the latitude and longitude of an address.
i want to use these lat and long details in iPhone Map kit to plot some information.
I am new to iphone development.I want to create slide show functionality for my app to display all the photos in my device.since UIImagePickerController is the only documented way to access the photo library on the device and it doesn't come with the slide show option,how can i build the slide show option for displaying photos with UIImagePickerController.Please help me out.Thanks.
Hey,
does anybody know, how i could create automatically a UML class diagram from an already existent iphone project. Is it possible?
Thanks in advance.
how can i add concept of theme or skin to iPhone application ?
my app will download themes from location upon purchase and then it will be applicable to apply that theme to application ..
does apple support any such thing?
Hi,
I want to use a protocol, how can we implement it in iPhone.
@protocol BasicAPI
-(NSString*)hello;
@end
// In Some method
NSURL* url = [NSURL URLWithString@"http://www.caucho.com/hessian/test/basic"];
id<BasicAPI> proxy = (id<BasicApi>)[CWHessianConnection proxyWithURL:url protocol:@protocol(basicAPI)];
NSLog(@"hello: %@", [proxy hello]);
Please help me how I can implement above code?