La mia app posiziona un pulsante con un'immagine di sfondo personalizzata e non ho bisogno di un bordo attorno ad esso. Non sono sicuro di come rimuovere il bordo. Il mio codice è:ios5: elimina bordo UIButton
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame=CGRectMake(100, 170, 100,30);
UIImage *cbutton = [UIImage imageNamed:@"pdficon_small.png"];
[button setImage:cbutton forState:UIControlStateNormal];
UIButton *button2 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button2 addTarget:self
action:@selector(openWordings:)
forControlEvents:UIControlEventTouchDown];
[button setTag:2];
[self.view addSubview:button];
Grazie in anticipo.