カスタム画像でUIBarButtonItemを作成したいのですが、画像に特別な境界線があるため、iPhoneが追加する境界線は必要ありません。
戻るボタンと同じですが、進むボタンです。
このアプリはinHouseプロジェクト用なので、Appleがそれを拒否または承認したか、気に入ったかどうかは気にしません:-)
UIBarButtonItemのinitWithCustomView:vプロパティを使用すると、次のことができます。
UIImage *image = [UIImage imageNamed:@"right.png"];
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setBackgroundImage: [image stretchableImageWithLeftCapWidth:7.0 topCapHeight:0.0] forState:UIControlStateNormal];
[button setBackgroundImage: [[UIImage imageNamed: @"right_clicked.png"] stretchableImageWithLeftCapWidth:7.0 topCapHeight:0.0] forState:UIControlStateHighlighted];
button.frame= CGRectMake(0.0, 0.0, image.size.width, image.size.height);
[button addTarget:self action:@selector(AcceptData) forControlEvents:UIControlEventTouchUpInside];
UIView *v=[[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, image.size.width, image.size.height) ];
[v addSubview:button];
UIBarButtonItem *forward = [[UIBarButtonItem alloc] initWithCustomView:v];
self.navigationItem.rightBarButtonItem= forward;
[v release];
[image release];
これは機能しますが、10のビューでこのプロセスを繰り返す必要がある場合、これはDRYではありません。
サブクラス化する必要があると思いますが、何ですか?
- NSView?
- UIBarButtonItem?
ありがとう
よろしく、