1

以下のコードを試してみましたが、ボタンのサイズは同じままです

UIButton * pInfoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];

[pInfoButton setFrame:CGRectMake(100,100, 80, 80)];

[pInfoButton setBounds:CGRectMake(0, 0, 80, 80)];

[self.view addSubview:pInfoButton];

サイズを大きくする方法を教えてください、よろしくお願いします

4

4 に答える 4

0

私はあなたのコードを試してみましたが、うまくいきました。添付画像を確認

ここでは、m_pInfoButton を使用してボタン [self.view addSubview:m_pInfoButton] を追加し、コードを [self.view addSubview:pInfoButton] に置き換えます。

UIButton * pInfoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
[pInfoButton setFrame:CGRectMake(100,100, 80, 80)];
[pInfoButton setBounds:CGRectMake(0, 0, 80, 80)];
[self.view addSubview:pInfoButton];
于 2013-10-25T05:39:38.130 に答える