在有导航栏下 加tableview导致tableview不能拉到
2016-07-28 本文已影响128人
帅气的阿斌
_tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, kScreenHeight-64) style:UITableViewStylePlain];
导航栏加上状态栏是64个点,在这要说明的是,是64个点,不是像素,底部的tabbar也是如此,是49个点。
_tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, kScreenHeight-64) style:UITableViewStylePlain];
导航栏加上状态栏是64个点,在这要说明的是,是64个点,不是像素,底部的tabbar也是如此,是49个点。