私は次のようにカスタムボタンを実装しました。iphoneのカスタムボタンのサイズを変更する方法Text
UIButton *mainBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[mainBtn setTitle:@"Meeting" forState:UIControlStateNormal];
[mainBtn setFrame:CGRectMake(80, 7, 72, 35)];
[mainBtn setBackgroundImage:[UIImage imageNamed:@"buttonActive.png"] forState:UIControlStateNormal];
mainBtn.contentEdgeInsets = UIEdgeInsetsMake(18, 5, 18, 10);
[mainBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
ここでボタンのタイトルは動的なものになります。だから、私はタイトルのダイナミックに長さに応じてボタンの幅を変更する必要があります。指定された幅のCGRectMakeは動作しません。誰かが私にそれを手伝うことができますか?
これはトリックを行う必要があります。 http://stackoverflow.com/a/4978003/716216 –