We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// Initialize a Table View CGFloat sc_width = self.view.frame.size.width; CGFloat sc_height = self.view.frame.size.height; firstTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, sc_width * 0.7, sc_height * 0.3)]; firstTableView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth; firstTableView.delegate = self; firstTableView.dataSource = self; firstTableView.layer.cornerRadius = 10; firstTableView.layer.masksToBounds = YES; firstTableView.center = CGPointMake(sc_width / 2, sc_height / 2); [self.view addSubview:firstTableView];
And Try popping the menu, it should be above the table, but its below.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
// Initialize a Table View
CGFloat sc_width = self.view.frame.size.width;
CGFloat sc_height = self.view.frame.size.height;
firstTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, sc_width * 0.7, sc_height * 0.3)];
firstTableView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
firstTableView.delegate = self;
firstTableView.dataSource = self;
firstTableView.layer.cornerRadius = 10;
firstTableView.layer.masksToBounds = YES;
firstTableView.center = CGPointMake(sc_width / 2, sc_height / 2);
[self.view addSubview:firstTableView];
And Try popping the menu, it should be above the table, but its below.
The text was updated successfully, but these errors were encountered: