Hi, I'm just starting developing for iphone, and I'm not very familiar with Objective C. What I'm looking for is the api documentation, like java's at Java Platform SE 6. Where can I find that for Objective C?
Thanks.
Hi, I'm just starting developing for iphone, and I'm not very familiar with Objective C. What I'm looking for is the api documentation, like java's at Java Platform SE 6. Where can I find that for Objective C?
Thanks.
You will need to make a free account and download the SDk from there, you can just search for things there, but there are many more helpful tutorials on here etc, also experts on the topic.
I have another question. I have a UISegmentedControl, Border style. The first picture is on the os 3.0 simulator. The second is on os 3.0 device. Notice it has these black bars on it, while the simulator doesn't. Any idea why and how I can make it look like the simulator does? Also, If I make it plain instead of bordered, then It still looks fine in the simulator, but its all the whole segmented control is black in the device, still with even blacker bars on the selected segment, and the titles are white. Any idea why this is happening? Thanks.
Simulator
Device
Thanks - Where can I find the documentation for IBActions? There's so many of them and I don't know when they are called.
IBAction is simply a substitute for the void keyword. It's just used to tell Interface Builder which methods in your class can be hooked up to control events (like tapping on a button).
Code:
- (IBAction) myMethod:(id) sender
is the same as
Code:
- (void) myMethod:(id)sender
Except that the first one will be picked up by Interface Builder automatically. (I've read that the second one might as well but you might as well be clear in your intentions.)
Hi, I'm just starting developing for iphone, and I'm not very familiar with Objective C. What I'm looking for is the api documentation, like java's at Java Platform SE 6. Where can I find that for Objective C?
Thanks.