我正在尝试制作一个iPad应用程序,其中的信息将在UINotification中弹出。但通知的默认大小相对较小。有什么办法可以增加通知的大小吗?
-(IBAction) player1:(id)sender{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Player1" message:@"Long message"delegate:self cancelButtonTitle:@"Done" otherButtonTitles:nil, nil];
[alert show];
}
我尝试添加此代码, alert.frame = CGRectMake(0,0,500,500); 但是里面的文字没有跟随。
有什么方法可以解决这个问题吗? 谢谢
答案 0 :(得分:0)
你不能改变UIAlertView :(它是故意设计的,迫使你简短!
如果您想显示大量数据,最好的选择是创建一个自定义UIView并显示它。