1

プログラムで UIViewController に UIToolbar を追加しています。

私が抱えている問題は、ビューが作成されたときにツールバーの「DO」ボタンが表示されますが、タイトルテキストが表示されないことです。

10 ~ 20 秒、場合によってはそれ以上待つと、最終的にタイトルが表示されます。

setNeedsDisplay と setNeedsLayout を呼び出して UI を強制的に更新しようとしましたが、うまくいきません。

私は何かばかげたことをしていますか?タイトルがすぐに表示されない理由を一生理解できません。

-(id)initWithFrame:(CGRect)frame
{
    self= [super init];

    if (self) {
        UIView  *view=[[UIView alloc]initWithFrame:frame];
        self.view=view;
        cellLoader = [UINib nibWithNibName:CellClassName bundle:[NSBundle mainBundle]] ;

        self.tableView=[[UITableView alloc]initWithFrame:CGRectMake(self.view.frame.origin.x,
                                                                    self.view.frame.origin.y+44,
                                                                    self.view.frame.size.width,
                                                                    self.view.frame.size.height-44)
                                                   style:UITableViewStylePlain];

        [self.tableView registerClass:[MyCell class] forCellReuseIdentifier:@"mycell"];
        [self.view addSubview:self.tableView];


        self.tableView.dataSource=self;
        self.tableView.delegate=self;
        //[self.tableView setContentInset:UIEdgeInsetsMake(44, 0, 0, 0)];

        navItem = [[UINavigationItem alloc] init];

        UILabel* lbNavTitle = [[UILabel alloc] initWithFrame:CGRectMake(-200,50,100,40)];
        [lbNavTitle setBackgroundColor:[UIColor clearColor]];
        lbNavTitle.textAlignment = NSTextAlignmentLeft;
        [lbNavTitle setTextColor:[UIColor whiteColor]];
        lbNavTitle.text = NSLocalizedString(@"",@"");
        navItem.titleView = lbNavTitle;

        naviBar = [[UINavigationBar alloc] init];
        naviBar.barStyle=UIBarStyleBlack;
        naviBar.items = [NSArray arrayWithObject:navItem];
        naviBar.frame = CGRectMake(0.0, 0, self.view.frame.size.width, 44.0);


        toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 350, 44)];

        toolbar.barStyle=UIBarStyleBlack;
        NSMutableArray *buttons = [[NSMutableArray alloc] initWithCapacity:7];





         button1=[[UIBarButtonItem alloc]
                                               initWithTitle:@"Button 1 text"
                                               style:UIBarButtonItemStyleBordered target:self
                                               action:@selector(buttononepressed:)];
        [buttons addObject: button1];

        UIBarButtonItem *spacer1 = [[UIBarButtonItem alloc]
                                    initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace
                                    target:nil
                                    action:nil];

        [buttons addObject:spacer1];

        button2=[[UIBarButtonItem alloc]
                                            initWithTitle:@"Button 2 text"
                                            style:UIBarButtonItemStyleBordered target:self
                                            action:@selector(button2pressed:)];
        [buttons addObject:button2];




        [toolbar setItems:buttons animated:NO];



            [self.view addSubview:toolBar];


            [naviBar setNeedsDisplay];
            [toolbar setNeedsDisplay];
            [self.view setNeedsDisplay];







    }

    return self;

}
4

1 に答える 1

0

これが viewController の場合、init メソッドですべてのビュー階層を作成するのではなく、viewDidLoadメソッドを使用します。(そして、自分で設定する必要はありませんself.view。デフォルトの実装UIViewControllerがそれを行います)

また、ツールバーをサブビューとして追加するだけでUINavigationBarANDを作成しUIToolBar、両方に同じフレームを設定しています...(このUINavigationBarジャンクコードも検討します)

- (void)viewDidLoad
{

    cellLoader = [UINib nibWithNibName:CellClassName bundle:[NSBundle mainBundle]] ;

    self.tableView=[[UITableView alloc]initWithFrame:CGRectMake(self.view.frame.origin.x,
                                                                      self.view.frame.origin.y+44,
                                                                    self.view.frame.size.width,
                                                                    self.view.frame.size.height-44)
                                                   style:UITableViewStylePlain];

    [self.tableView registerClass:[MyCell class] forCellReuseIdentifier:@"mycell"];
    [self.view addSubview:self.tableView];

    self.tableView.dataSource=self;
    self.tableView.delegate=self;

    toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 350, 44)];
    toolbar.barStyle=UIBarStyleBlack;



    UIBarButtonItem *button1 = [[UIBarButtonItem alloc] initWithTitle:@"Button 1 text"
                                                  style:UIBarButtonItemStyleBordered target:self
                                                 action:@selector(buttononepressed:)];    
    UIBarButtonItem *spacer1 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace
                                    target:nil
                                    action:nil];

    UIBarButtonItem *button2 = [[UIBarButtonItem alloc] initWithTitle:@"Button 2 text"
                                                 style:UIBarButtonItemStyleBordered target:self
                                                action:@selector(button2pressed:)];



    // using Objective-C litterals you shorter code than using NSMutableArray !
    [toolbar setItems:@[button1, spacer1, button2] animated:NO];



    [self.view addSubview:toolBar];


  }

}

通常、これで十分です ( を呼び出す必要はありませんsetNeedsDisplay。これらは、サブビューを追加するときに自動的に行われます)。

于 2013-09-03T16:14:05.077 に答える