12
プログラムでボタンをナビゲーションバーに追加する
こんにちは、ナビゲーションバーのプログラムで右側にボタンを設定する必要があります。ボタンを押すと、いくつかのアクションを実行できます。プログラムでナビゲーションバーを作成しました。 navBar=[[UINavigationBar alloc]initWithFrame:CGRectMake(0,0,320,44) ]; 同様に、このナビゲーションバーの右側にボタンを追加する必要があります。そのために使用しました、 1。 UIView* container = [[UIView alloc] init]; // create a button and add it to the container UIButton* button = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 130, 44.01)]; [container addSubview:button]; [button release]; // add another button button = [[UIButton alloc] initWithFrame:CGRectMake(160, 0, 50, 44.01)]; [container addSubview:button]; [button …