在按钮上单击我显示一个弹出视图,这是一个tableview。
一切似乎都有效,视图显示但在不到一秒的时间内消失。
tableview包含一个字符串列表,我将tablecell设置为show checkmark。
我注意到该表显示了在显示的分秒中检查的所有项目
任何人都知道我错过了什么。
由于
哈桑
显示popover的代码
- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([segue.identifier isEqualToString:@"WholesalersList"]){
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
WholesalersViewController *vc = segue.destinationViewController;
vc.wholesalers = [appDelegate.wholesalers mutableCopy];
if ([segue isKindOfClass:[UIStoryboardPopoverSegue class]]){
self.wholesalersPopoverController = [(UIStoryboardPopoverSegue *)segue popoverController];
[self.wholesalersPopoverController setPopoverContentSize:CGSizeMake(334, 334)];
//[self.wholesalersPopoverController setDelegate:self];
}
}
}
popover tableview中的代码
#pragma mark Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)theTableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)theTableView numberOfRowsInSection:(NSInteger)section {
if ([self.wholesalers count] == 0) {
return 1;
}
else {
return [self.wholesalers count];
}
}
#pragma mark Table view delegate
- (UITableViewCell *)tableView:(UITableView *)theTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if ([self.wholesalers count] == 0) {
return nil;
}
else {
static NSString *CellIdentifier = @"WholesalerCell";
UITableViewCell *cell = [theTableView dequeueReusableCellWithIdentifier:CellIdentifier];
// Configure the cell.
Wholesaler *ws = (Wholesaler *)[self.wholesalers objectAtIndex:indexPath.row];
cell.textLabel.text = ws.name;
return cell;
}
}
- (CGFloat)tableView:(UITableView *)theTableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 44;
}
- (void)tableView:(UITableView *)theTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
}
- (void)tableView:(UITableView *)theTableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {
}
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
return NO; // The table view should not be re-orderable.
}
答案 0 :(得分:0)
正在调用dismissPopover:在代码中的任何地方设置动画,就像在按钮的IBAction方法中错误地使用或者你没有IBAction方法?