私はプログラム的にこれを複製しようとしています:適切な自動サイズ変更マスク設定
私は多くの混乱は、Appleがこれをどのように処理するかにあります見てきました。私は以下を試しましたが、それは私のためには機能しません:
[buttonTop setAutoresizingMask:UIViewAutoresizingFlexibleHeight];
ここからどこへ行くべきですか?
更新:次のように
私のボタンのコードは次のとおりです。
buttonTop = [UIButton buttonWithType:UIButtonTypeCustom];
buttonTop.frame = CGRectMake(0, 0, 100, 100);
buttonTop.center = self.view.center;
buttonTop.layer.cornerRadius = buttonTop.frame.size.width/2;
buttonTop.clipsToBounds = YES;
buttonTop.layer.masksToBounds = YES;
[buttonTop setAutoresizingMask:UIViewAutoresizingFlexibleHeight];
if (GetUserProPic){
[buttonTop sd_setImageWithURL:[NSURL URLWithString:GetUserProPic] forState:UIControlStateNormal];
[buttonTop sd_setImageWithURL:[NSURL URLWithString:GetUserProPic] forState:UIControlStateSelected];
} else {
[buttonTop setImage:[UIImage imageNamed:@"avatar_icon"] forState:UIControlStateNormal];
[buttonTop setImage:[UIImage imageNamed:@"avatar_icon"] forState:UIControlStateSelected];
}
[self.view addSubview:buttonTop];
出力は次のようになります。
しかし、私はそれを希望します次のようになります。
あなたは、それ以上を除いて、自動サイズ変更マスクを使用するべきではありません従来のアプリケーションでは、実際には自動レイアウトに更新する必要があります。 –
@DuncanC私は同意しません。利用可能なさまざまなツールがあります。特定の状況で動作するものを使用します。マスクの自動サイズ変更には何も問題はありません。 – rmaddy
@jape「うまくいかない」という意味を明確にする必要があります。また、ボタンの作成方法と設定方法について詳しく説明します。コメントではなく、あなたの質問にすべての情報を入れてください。 – rmaddy