This code is correct. You may have customized the toolbar as a user, so that toolbarDefaultItemIdentifiers is not called. In that case, you can throw away the preferences file for testing. Otherwise, you'll have to explain what you mean by "not working."

On May 19, 2009, at 10:26 AM, Arun wrote:

Hi,
I have an application in which i added 2 buttons and one search view in the too bar. I need to insert a seperator in between search view and 2 buttons. I have tried the following in my code. and it is not working. Any idea?

- (NSArray *) toolbarAllowedItemIdentifiers: (NSToolbar *) toolbar
{
   return [NSArray arrayWithObjects:[NSString
stringWithString:serachIdentifier],
           NSToolbarSeparatorItemIdentifier,
           [NSString stringWithString:Button1ToolbarItemIdentifier],
           [NSString stringWithString:Button2ToolbarItemIdentifier],
            nil];
}

- (NSArray *) toolbarDefaultItemIdentifiers: (NSToolbar *) toolbar
{
   return [NSArray arrayWithObjects:searchIdentifier,
           NSToolbarSeparatorItemIdentifier,
           Button1ItemIdentifier,
           Button2ItemIdentifier, nil];
}


Thanks
Arun KA

_______________________________________________

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 arch...@mail-archive.com

Reply via email to