Re: obj-c newb question
Re: obj-c newb question
- Subject: Re: obj-c newb question
- From: Michael Stevenson <email@hidden>
- Date: Tue, 4 Nov 2003 21:46:37 -0600
Thanks. Now I just realized what a dumb mistake that was... so, in
what instances would you actually want to declare Class methods? What
are they useful for? I cant map this idea to anything that I'm
familiar with...
Thanks for the help..
On Nov 4, 2003, at 7:44 PM, Mike R. Manzano wrote:
device = [doop GetDefaultDevice];
Looks like you're trying to access a class method. Class methods are
designated with a "+" instead of a "-". So,
+(AudioDeviceID)GetDefaultDevice;
in your declaration, and
+(AudioDeviceID)GetDefaultDevice {
in your implementation.
On Nov 4, 2003, at 4:40 PM, Michael Stevenson wrote:
main:
int main() {
id DefaultDevice;
AudioDeviceID device;
DefaultDevice = [[doop alloc] init];
printf("defaultdevice: 0x%x\n", (int)DefaultDevice);
device = [doop GetDefaultDevice];
printf("device id: 0x%x\n", (int)device);
return 0;
}//main
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.