iphone 2 кнопки в навигационной панели - PullRequest
0 голосов
/ 25 февраля 2011

У меня есть навигационная панель (с навигацией), я включил 2 кнопки на навигационную панель, но если я выделю одну из кнопок слева, моя навигационная кнопка исчезнет (тесто), так как я могу, моя навигациякнопка, и еще 2 кнопки?вот код, который я использую:

из viewDidLoad

UIButton* infoButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
infoButton.frame = CGRectMake(0, 10, 40, 30);
UIImage *img = [UIImage imageNamed:@"eye.png"];
[infoButton setImage:img forState:UIControlStateNormal]; [img release];
//[infoButton setTitle:@"xuxu"forState:UIControlStateNormal];
[infoButton addTarget:self action:@selector(infoButtonAction) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *modalButton = [[UIBarButtonItem alloc] initWithCustomView:infoButton];
[self.navigationItem setRightBarButtonItem:modalButton animated:YES];
[modalButton release];


UIButton* iButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
iButton.frame = CGRectMake(0, 10, 40, 30);
UIImage *imag = [UIImage imageNamed:@"eye.png"];
[iButton setImage:imag forState:UIControlStateNormal]; [imag release];
//[infoButton setTitle:@"xuxu"forState:UIControlStateNormal];
[infoButton addTarget:self action:@selector(infoButtonAction) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *modalButton2 = [[UIBarButtonItem alloc] initWithCustomView:iButton];
[self.navigationItem setLeftBarButtonItem:modalButton2 animated:YES];
[modalButton2 release];

, поэтому моя вторая кнопка установлена ​​на

setLeftBarButtonItem

isесть что-нибудь вроде setCenter ??или способ установить положение с помощью х, у ??Мне нужны 2 кнопки, чтобы кнопка оставалась слева для навигации (3 кнопки)

спасибо!

1 Ответ

1 голос
/ 25 февраля 2011

используйте этот код для понимания того, как вы можете добавить две или более кнопки на навигационную панель

UIButton* infoButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    infoButton.frame = CGRectMake(0, 10, 40, 30);
    UIImage *img = [UIImage imageNamed:@"eye.png"];
    [infoButton setImage:img forState:UIControlStateNormal]; [img release];
    [infoButton setTitle:@"xuxu"forState:UIControlStateNormal];
    [infoButton addTarget:self action:@selector(infoButtonAction) forControlEvents:UIControlEventTouchUpInside];
    UIBarButtonItem *modalButton = [[UIBarButtonItem alloc] initWithCustomView:infoButton];
    [self.navigationItem setRightBarButtonItem:modalButton animated:YES];
    [modalButton release];


    UIButton* iButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    UIButton* aButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    aButton.frame = CGRectMake(0, 10, 40, 30);
    iButton.frame = CGRectMake(42, 10, 40, 30);
    UIImage *imag = [UIImage imageNamed:@"eye.png"];
    [iButton setImage:imag forState:UIControlStateNormal]; 
     [aButton setImage:imag forState:UIControlStateNormal]; 
    [imag release];
    [infoButton setTitle:@"xuxu"forState:UIControlStateNormal];


    [iButton addTarget:self action:@selector(infoButtonAction) forControlEvents:UIControlEventTouchUpInside];
    [aButton addTarget:self action:@selector(infoButtonAction) forControlEvents:UIControlEventTouchUpInside];
    UIView *viewForAdd=[[UIView alloc] initWithFrame:CGRectMake(0,0,100,50)];
    [viewForAdd addSubview:iButton];
    [viewForAdd addSubview:aButton];
    UIBarButtonItem *modalButton2 = [[UIBarButtonItem alloc] initWithCustomView:viewForAdd];
    [self.navigationItem setLeftBarButtonItem:modalButton2 animated:YES];
    [modalButton2 release];
...