I am not able to expand a UITable from a corner.
This is what I do:
tableAccounts = [[UITableView alloc] initWithFrame:CGRectMake(0, 71, 0,0)];
[self.view addSubview:tableAccounts];
[UIView beginAnimations:@"tableAppearing" context:nil];
[UIView setAnimationDuration:3.0f];
[UIView setAnimationCurve:UIViewAnimationCurveLinear];
tableAccounts.frame = CGRectMake(0, 71, 320, 332);
tableAccounts.backgroundColor = [UIColor redColor];
[UIView commitAnimations];
I can see the table appearing from the top left corner, but not expanding! I mean that the table never changes its size, its always the same size and it is appearing.
I want the same effect but starting with a tiny table, and being bigger.
It is possible?
You should be able to do that by applying a scale transform to the tableview and moving it from the corner. The following should grow from the bottom right corner.