uibarbutton-Camera スタイルをプログラムで uitableviewcell に追加しようとしていますが、uitableviewcell には何も表示されません
UIButton *newBtn=[UIButton buttonWithType:UIBarButtonSystemItemCamera];
[newBtn setFrame:CGRectMake(250,10,50,30)];
[newBtn addTarget:self action:nil forControlEvents:UIControlEventTouchUpInside];
[newBtn setEnabled:YES];
[cell addSubview:newBtn];
しかし、このコードを使用すると、uitableviewcell に丸みを帯びた四角形のボタンが表示されます
UIButton *newBtn=[UIButton buttonWithType:UIButtonTypeRoundedRect];
[newBtn setFrame:CGRectMake(250,10,50,30)];
[newBtn addTarget:self action:nil forControlEvents:UIControlEventTouchUpInside];
[newBtn setEnabled:YES];
[cell addSubview:newBtn];
uibarbuttonstyle ボタンを追加する方法はありますか、それとも uitableviewcell に uibutton の丸みを帯びた四角形スタイルを追加することしかできませんか?