0
私のiPadで私はalertviewを使用しています、私の問題は、私はそれが増加していないalertviewの幅を増やそうとしているときです。 alertviewには最大幅があります。私はこれの初心者です。誰も私を助けることができます。私は以下のように使用しましたalertviewの最大幅は?
- (void)willPresentAlertView:(UIAlertView *)alertView {
if (alertView.tag==1) //MP: This tag differentiates between many alert views..so crazy :)
{
CGRect alertFrame = CGRectMake(250.0, 400.0, 650.0, 150.0);
alertView.frame = alertFrame;
}
}
はウル返事をありがとう。私はそれを試みます。 – sny