1. ホーム
  2. ios

[解決済み] 固定スペースとフレキシブルスペースバーボタンアイテムをプログラムで作成するには?

2022-06-04 09:20:02

質問

私は UIBarButtonItems を作成し、これらの固定スペースアイテムをボタンの間に配置したい。

どのように解決するのですか?

UIBarButtonItem *fixedItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
fixedItem.width = 20.0f; // or whatever you want

UIBarButtonItem *flexibleItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];