Started 1 week, 1 day ago (2009-11-28 16:23:00)
by drf1229
You have to also declare it in your
class (.m) file. Declare it like this:
Code:
@implementation Class
@synthesize propertyname;
@end
Started 6 days, 10 hours ago (2009-11-30 22:11:00)
by Matthew Yohe
It's not random.
I would recommend reading up on pointers.
Started 1 week, 1 day ago (2009-11-28 14:37:00)
by dejo
Quote:
Originally Posted by Sambo110
Is there any way I can download the iPhone SDK, and not the 2.5 gig file that includes the
Xcode IDE which I already have?
The iPhone SDK requires Xcode.
Quote:
Originally Posted by Sambo110
And when I ...
Started 6 days, 2 hours ago (2009-12-01 06:04:00)
by robbieduncan
I will assume this is an iPhone question. If it is then the answer is NSXMLDocument does not exist on the iPhone so don't use it. It's not in the iPhone Developer Center documentation so you should have already known this.
Yes it works in the simulator as that is using the libraries on your Mac but that does not mean it works on an iPhone. Stick to using the
APIs declared by Apple.
Started 4 days, 21 hours ago (2009-12-02 11:15:00)
by PhoneyDeveloper
Write your own utility functions with C linkage that provide the full paths to the app bundle and the documents folder. You'll then be able to access these from your C++ code. You implement those functions using
Objective-C.
Started 6 days, 23 hours ago (2009-11-30 09:17:00)
by Darkroom
seems like a much tricker execution that i had imagined it would be / should be. i found a solution here: What Color is My Pixel? Image based
color picker on iPhone
Started 1 week ago (2009-11-29 22:45:00)
by ApplEngineer
You can place the method within a method that's called when the view is loaded. You can uncomment the method called viewDidLoad within your view controller and place it there. Once that specific view controller is loaded this method is called and will then call whatever method you placed inside.
Hope this makes sense.
Example:
Code:
- (void)viewDidLoad {
[super ...
Started 1 week, 1 day ago (2009-11-29 07:16:00)
by Darkroom
Quote:
Originally Posted by tommyc7
Hi, I'm a programmer, but am completely new to iPhone development. I am still learning how the Core Location / GPS development works, but so far have not found the answer to this.
How do apps like Yelp or AroundMe know the
Business Name, address and phone number data in the area. ...
Started 6 days, 21 hours ago (2009-11-30 11:27:00)
by dejo
You may want to include the actual code you are using since I don't see where you are actually calling pushViewController:animated: anywhere. As in,
Code:
[self.navigationController pushViewController: viewController animated:YES];
Started 1 week ago (2009-11-30 05:02:00)
by robbieduncan
What class is that method in? If it's not your application
delegate it's not going to work...