Go Back   XCode Forum- The iPhone and Mac OS Xcode Developer Community > Mac OS > Cocoa

Reply
 
LinkBack Thread Tools Display Modes

Struggling with Preference Pane
  #1 (permalink)  
Old 10-19-2008, 08:28 PM
Adam Penny Adam Penny is offline
Junior Member
 
Join Date: Oct 2008
Posts: 1
Default Struggling with Preference Pane

Hi there,

I've been doing a bit of Cocoa and not doing too badly, having completed Aaron Hillegass' book a while back and successfully done a few other bits and bobs as far as Cocoa Apps are concerned.

I now find myself wanting to make a preference panel, which isn't covered in the book. I've looked at Apple's documentation on implementing a preference panel, but I think it must be geared to XCode 2, which I've never used and I can't seem to translate its guidance to XCode 3.

The panel is supposed to just read and write to a plist in /Library/Preferences/ which I created as a model for a Ruby command line utility, which does some backend stuff with CUPS.

I added 3 IB Outlets to the preferences subclass:
Code:
#import <PreferencePanes/PreferencePanes.h>

@interface WopolPref : NSPreferencePane 
{
	IBOutlet NSTextField *broadcastIP;
	IBOutlet NSTableView *printerSpec;
	IBOutlet NSTableView *serverSpec;
}

- (void) mainViewDidLoad;

@end
When I try to associate the class with an NSObject in IB, I don't get these outlets. Instead I see

_firstKeyView
_secondKeyView...

and some more stuff like that. Where am I going wrong?

If you can warn me about any other possible traps I might fall into then please tell me.

Thanks all.
Reply With Quote

  #2 (permalink)  
Old 10-29-2008, 06:30 PM
jon jon is offline
Administrator
 
Join Date: Jun 2008
Location: Colorado
Posts: 19
Default

Have you read the Apple documentation on preference panes?

Preference Panes: Creating a Preference Pane Bundle
Reply With Quote
Reply

Tags
cocoa, preference panel, prefpane, xcode 3

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump



All times are GMT. The time now is 11:47 PM.


vBulletin skin developed by: eXtremepixels
Powered by vBulletin® Version 3.8.0 Beta 1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27