Hello I am having a alertview and i want to change the size by cgrectmake property but it does not happen . It just take the by default size.
i tried following code.
- (void)viewDidLoad { [super viewDidLoad]; UIAlertView* find = [[[UIAlertView alloc] init]initWithFrame:CGRectMake(0,0,300,200)]; [find setDelegate:self]; [find setTitle:@"Sample Alert"]; [find setNeedsLayout]; [find show]; [find release];
}
Thanks in advance .
To achieve what you want, in your code, after:
[find show];
add:
find.frame = CGRectMake(0,0,300,200);
It's not pretty though, I suggest you use ActionSheets.
2.1m questions
2.1m answers
60 comments
57.0k users