gpt4 book ai didi

ios - 隐藏/关闭 View Controller

转载 作者:行者123 更新时间:2023-11-28 20:12:42 25 4
gpt4 key购买 nike

我的 iPhone 项目上有一个 Popover:

popover screenshot

当我点击一张小图片时会出现:

-(void)tapDetected:(UITapGestureRecognizer *)sender
{
UIImageView *iboImageView = sender.view;
UITableView *tableView = (UITableView *)iboTableView;
NSIndexPath *index = [NSIndexPath indexPathWithIndex:iboImageView.tag];
MovieCell *cell = (MovieCell *)[tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:iboImageView.tag inSection:0]];
[ApplicationManager getInstance].currentMovie=cell.nameLabel.text;

DemoTableController *controller = [[DemoTableController alloc] initWithStyle:UITableViewStylePlain]; //This is my popover controller (what is displayed inside popover )
FPPopoverController *popover = [[FPPopoverController alloc] initWithViewController:controller];
popover.contentSize = CGSizeMake(150,158);
[popover presentPopoverFromView:cell.iboPopImage];
}

当我按下一个单元格时,我想折叠弹出框。有没有类似self.close的东西?

最佳答案

来自 FPPopoverController.h 文件:

/** @brief Dismiss the popover **/
-(void)dismissPopoverAnimated:(BOOL)animated;

/** @brief Dismiss the popover with completion block for post-animation cleanup **/
typedef void (^FPPopoverCompletion)();
-(void)dismissPopoverAnimated:(BOOL)animated completion:(FPPopoverCompletion)completionBlock;

使用这些方法中的任何一个来关闭 Controller 。

关于ios - 隐藏/关闭 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19540819/

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