IOS. Пользовательский UIToolbar без каких-либо предметов - PullRequest
0 голосов
/ 29 ноября 2011

Я использую следующий код:

@interface CustomToolBar : UIToolbar {
}

@end


@implementation CustomToolBar

- (id)initWithCoder:(NSCoder *)aDecoder
{
    self = [super initWithCoder:aDecoder];
    if (self) {
        UIBarButtonItem *myButton = [[UIBarButtonItem alloc] initWithTitle:@"Button" style:UIBarButtonItemStyleBordered target:self action:@selector(pressSignupButton:)];

        // add buttons to the array
        NSArray *items = [NSArray arrayWithObjects:myButton, nil];

        [self setItems:items];

    }
    return self;
}

@end

Затем я создаю xib-файл с UIToolBar и создаю CustomToolBar в качестве его класса.Но я не вижу кнопок на этом UIToolBar.

...