Hi,
One question though.
When I use:
[NSBundle loadNibNamed:@"SettingsDialog" owner:self]; // the nib name
is SettingsDialog.nib
Xcode complains that this is the first time that self is used.
I am a bit rusty right now, can anyone explain why? I thought self
could be used like this.
What am I missing?
Thanks.
-Jason
On May 2, 2008, at 4:31 PM, Michael Vannorsdel wrote:
You can convert this to the C equivalent if you absolutely must use
C (off the top of my head):
Class mclass = objc_getMetaClass("NSBundle");
SEL s = @selector(loadNibNamed:owner:);
IMP f = class_getMethodImplementation(mclass, s);
BOOL res = f(mclass, s, @"SettingsDialog", self);
On May 2, 2008, at 4:38 PM, J. Todd Slack wrote:
Yeah, I am using:
[NSBundle loadNibNamed:@"SettingsDialog" owner:self;]
But that is Objective-C, I need to do it from a .c file.
_______________________________________________
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/mailinglists%40jasonandannette.us
This email sent to [EMAIL PROTECTED]
_______________________________________________
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [EMAIL PROTECTED]