1

完了ボタンをツールバーに配置するこれらのコード行があります。中心にする方法がわかりません。私はオンラインで多くのことを試しましたが、うまくいくものを見つけることができません。

self.closeButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(close)];
    self.closeButton.enabled = YES;
    self.closeButton.imageInsets = UIEdgeInsetsZero;
    self.closeButton.style = UIBarButtonItemStylePlain;
    self.closeButton.width = 32.000;

ありがとう

4

1 に答える 1

1

UIBarButtonSystemItemcloseButtonのUIBarButtonSystemItemFlexibleSpace前後に を追加できます。

UIBarButtonItem* flexibleSpace = 
    [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
于 2013-04-15T20:10:51.807 に答える