gpt4 book ai didi

ios - UIPopoverController 无法处理 ui 元素

转载 作者:行者123 更新时间:2023-11-29 04:31:52 24 4
gpt4 key购买 nike

这就是我展示我的弹出窗口的方式

- (IBAction)openImage:(id)sender {

OptionViewController *option = [[OptionViewController alloc] init];
option.delegate = self;

if (!popoverController) {
popoverController = [[UIPopoverController alloc] initWithContentViewController:option];
}
popoverController.delegate = self;
[popoverController setPopoverContentSize:CGSizeMake(320, 88)];
[popoverController presentPopoverFromRect:((UIButton *)sender).bounds inView:sender permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];

}

有选项 View Controller

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return 2;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] ;
}

NSInteger section = [indexPath row];

switch (section) {
case 0: // First cell in section 0
cell.textLabel.text = @"From library";
break;
case 1: // Second cell in section 1
cell.textLabel.text = @"Make a photo";
break;
default:
// Do something else here if a cell other than 1,2,3 or 4 is requested
break;
}
return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// I set breakpoints there. For now it doesn't work.
}

OptionViewController是一个UITableViewController(继承),包含带有委托(delegate)的UITableView和datasourse = self(对于OptionViewController实例)

我也使用 XIB。在 XIB UITableView 中,每侧(左、上、右、下)自动调整大小 mask 设置

在其他方法中,我不会调用任何可以锁定我的 View 或其他操作的其他方法。

有一个带有颜色离屏渲染选项的屏幕截图

enter image description here

最佳答案

我认为您错误地设置了 OptionViewController 的委托(delegate)。如果委托(delegate)方法的实现在 OptionViewController 中,那么您应该删除设置 option.delegate 或将其设置为自身:option.delegate = option;

您的数据源委托(delegate) (option.dataSource) 看起来正在工作,但委托(delegate) (option.delegate) 却不起作用。

关于ios - UIPopoverController 无法处理 ui 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11633945/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com