0
PhoneGap 1.3を使用していて、ツールバーの右側にiOS追加ボタンを作成しようとしています。ただし、createToolBarItem
メソッドにはアイテムの位置を設定するオプションがありません。これどうやってするの?ここでNativeControls.hからのコードの抜粋です:PhoneGapを使用してUIToolBarにUIBarButtonItemを配置します
//create the toolbar in `createToolBar` method://
toolBar = [[UIToolbar alloc] initWithFrame:toolBarBounds];
//....set some toolbar options like .hidden, .barStyle, etc.//
[toolBar setFrame:toolBarBounds];
[self.webView setFrame:webViewBounds];
//add the toolbar to the webview
[self.webView.superview addSubView:toolBar];
//create the button item in `createToolBarItem` method:
item = [[UIBarButtonItem alloc] initWithBarButtonSystemItem: UIBarButtonSystemItemAdd target:self action:@selector(toolBarButtonTapped:)];
[toolBarItems insertObject:item atIndex:[tagId intValue]];
[item release];
//then in `showToolBar` method//
[toolBar setItems:toolBarItems animated:NO];