Voglio creare un UIBarButtonItem con un'immagine personalizzata, ma non voglio il bordo aggiunto da iPhone, poiché la mia immagine ha un bordo speciale.
È lo stesso del pulsante Indietro ma di un pulsante Avanti.
Questa App è per un progetto inHouse, quindi non mi interessa se Apple la rifiuta, la approva o mi piace :-)
Se utilizzo la proprietà initWithCustomView: v di UIBarButtonItem, posso farlo:
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];
Funziona, ma se devo ripetere questo processo in 10 visualizzazioni, non è DRY.
Suppongo di dover sottoclassare, ma cosa?
- NSView?
- UIBarButtonItem?
Grazie,
Saluti,