6

iPhoneのメールアプリケーションのように、ナビゲーションバーに次と前のボタンを作成する方法。 代替テキスト

4

2 に答える 2

7

次のコードを使用します(「prev.png」および「next.png」の画像が必要であることに注意してください-矢印)。

- (void)addNextPrevSegmentedControl {
    // Prepare an array of segmented control items as images
    NSArray *nextPrevItems = [NSArray arrayWithObjects:[UIImage imageNamed:@"prev.png"], [UIImage imageNamed:@"next.png"], nil];
    // Create the segmented control with the array from above
    UISegmentedControl* nextPrevSegmentedControl = [[UISegmentedControl alloc] initWithItems:nextPrevItems];
    [nextPrevSegmentedControl addTarget:self action:@selector(nextPrevAction:) forControlEvents:UIControlEventValueChanged];
    // Create the bar button item with the segmented control from above
    UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithCustomView:nextPrevSegmentedControl];
    // Add the bar button item from above to the navigation item
    [self.navigationItem setRightBarButtonItem:rightButton animated:YES];
    // Release memory
    [rightButton release];
    [nextPrevSegmentedControl release];
}
- (void)nextPrevAction:(id)sender {
    if ([sender isKindOfClass:[UISegmentedControl class]]) {
        int action = [(UISegmentedControl *)sender selectedSegmentIndex];

        switch (action) {
            case 0:
                // Prev
                break;
            case 1:
                // Next
                break;
        }
    }
}


編集:コードを修正しました

于 2010-06-30T06:46:23.307 に答える
1

UISegmentedControlこれは、2つのセグメントを持つを使用して実装できます。

segmentedControlStyleを。として設定しUISegmentedControlStyleBarます。

上下に2UIImageを設定します。

于 2010-06-30T06:30:10.613 に答える