» iPhone Dev SDK - The community for the iPhone developer community
iPhone Dev SDK is a community for software developers interested in the iPhone SDK platform. Founded in March 2008, iPhone Dev SDK was one of the first communities for this revolutionary new platform.
What separates iPhone Dev SDK from the others is the friendly atmosphere the community provides for developers of all abilities. Whether you've been programming your entire life or are just now getting interested, you'll find yourself welcomed to the community.
I have a project, and it was working fine. Then I added three files and edited them and all, but when I went to build it, all three got this error message... ( ... on Twitpic )
I'm new to the forum, so first of all, thank you all for any further assistance provided. I'm currently working on the development of a new iPhone Accessory & Application, but to continue my research I must first find the answer to a few questions. Any assistance is very much appreciated, and anyone who would considers long-term assistance please get in contact.
Thank You, Rag.
Questions:
Can the iPhone keep track of multiple GPS chips simultaneously?
Can the iPhone maintain Real-Time connection with multiple GPS chips simultaneously?
Can the iPhone accurately track and represent the movements of multiple GPS chips and it-self in Real-Time, through an application?
Could the iPhone maintain Real-Time connection with a GPS chip which is indoors?
Can an application which tracks and represents Real-Time movements of multiple GPS chips be... [Read More]
Hi all,
I have a tool bar that has 3 buttons, and 3 spacers on it. The issue is sometimes, then I touch the 3rd button the 2nd button will get the "glow" around it and be selected if I touchUP, instead of the 3rd button. I do have some spacers but the buttons are 50pxls apart which is plenty on the screen.
Anyone have any idea why this would be happening, Its happening on multiple devices.
Heres the code to set the tool bar up
hi all,
i have a viewcontroller, im adding a subviewcontroller to it. this subviewcontroller use a subview (subclassed UIView). there is a button in subview.
if the user press the button, i want to set a varibale in Mainviewcontroller, then call RefreshPage method.
i am adding subview controller 3 different viewcontrollers (like mainviewcontroller).
how can i set xyzID then call RefreshPage method ?
i think i should... [Read More]
sorry, i am really new to app store and online money transactions. i just have a question:
on the enrollment process for the iphone developers program, i provided my credit card number to pay the $99 to be a standard developer.
now, if this scenario occurred:
- i published an app to the store.
- and let's say it gained money.
- how exactly the money will be transfered to me? taking into account that I did not provide any bank account.
as long as i know, credit cards don't receive money transfers.
the question may be so stupid, but sorry, i am really new to such online actions regarding money.
Anyone know if there's a way to load a custom font through the Info.pList file (UIAppFonts key) from a different bundle other than the main application bundle?
I'm working on a project that turns numbers to words as a training exp. But I'm facing a problem, I'm using a method to collect first 3 chars as shown bellow:
Code:
NSString *a=[[NSString alloc]initWithFormat:@"%d",[snumber characterAtIndex:(0,3)]];
int millions = (int)a;
NSString *s=[[NSString alloc]initWithFormat:@"%d",[snumber characterAtIndex:(3,6)]];
int hundredThousands = (int)s;
NSString *d=[[NSString alloc]initWithFormat:@"%d",[snumber characterAtIndex:(6,9)]];
int thousands = (int)d;