gpt4 book ai didi

ios - 如何在继续之前强制用户与 UIView 交互?

转载 作者:行者123 更新时间:2023-11-28 22:23:52 26 4
gpt4 key购买 nike

在 StackOverflow 上许多其他人的帮助下,我终于能够在用户点击某个面孔或某个人时在 UIView 上显示个人资料屏幕弹出窗口。

但是,在我的应用程序(iOS 6、Xcode 4.6)中,我还需要弹出 View 将索引返回给调用 ViewController,因为下一步是使用该索引刷新屏幕。例如,用户单击主 ViewController 中的顶面或图像,应该会看到一个弹出窗口,让用户浏览然后选择另一个图像。当个人资料屏幕被关闭时(从弹出窗口中的取消或选择),主屏幕应该使用用户在弹出窗口中选择的照片更新照片。

现在,我正在使用委托(delegate)方法将用户在弹出窗口中的选择返回给调用 ViewController,然后它自己消失。问题是当我运行我的代码时,在调用 ViewController 移动到下一步并尝试使用配置文件屏幕在被关闭之前更新的变量之前,弹出窗口甚至没有出现。这是一个问题,因为在用户在弹出窗口中执行某些操作以更新它之前,该变量是垃圾。

代码的工作原理如下。首先,用户点击主 ViewController 中的某些内容:

- (IBAction)handleTapFace1:(UITapGestureRecognizer *)sender
{
NSLog(@"Face 1 tapped!");
[self showProfileView:0];

if (returnedSwitchIndex != NO_SWITCH)
{
// Animate switch
[self performVisualSwitch: selectedFaceIndex to:returnedSwitchIndex];
}
}

showProfileView 是我在其中启动弹出式配置文件窗口的功能,其中包含点击面部的详细信息,以及浏览每张面部以查找替换面部的功能。弹出窗口在详细信息中包含一个取消 UIButton、一个切换 UIButton。

-(void) showProfileView: (int) tappedIndex
{
UIStoryboard *storyboard = self.storyboard;

ProfileViewController *profViewController = [storyboard instantiateViewControllerWithIdentifier:@"ProfileView"];

// Pass the parameters profView needs to display
profViewController.currentIndex = tappedIndex;
profViewController.turnIndex = 0; // <-- TODO: test value

NSMutableArray* members = [[NSMutableArray alloc] init];
... load array with candidate faces ...

profViewController.faces = [[NSArray alloc] initWithArray:members];

[self addChildViewController:profViewController];

profViewController.view.frame = CGRectMake(0, 0, 320, 548);
[self.view addSubview: profViewController.view];
profViewController.view.alpha = 0;
[profViewController didMoveToParentViewController:self];

NSLog(@"Self located at: %@", NSStringFromCGPoint(self.view.frame.origin));
NSLog(@"Frame located at: %@", NSStringFromCGPoint(profViewController.view.frame.origin));

// popup
[UIView animateWithDuration:0.25 delay:0.0 options:UIViewAnimationOptionCurveLinear animations:^
{
profViewController.view.alpha = 1;
}
completion:nil];

// I previous tried to return a value here, that also failed
//return profViewController.switchIndex;

// trying to force redisplay before calling ViewController can proceed
[profViewController.view setNeedsDisplay];
}

我想我想问的是...“为什么 UIView/popover 窗口不能在 showProfileView 的调用者向前移动之前出现?”和“在调用 ViewController 超出 showProfileView 行并开始使用 returnedSwitchIndex 之前,我如何强制用户与弹出的 UIView 或 UIViewController 进行交互?”也许我的委托(delegate)解决方案不是这样,但我如何从显示的 UIView 返回一些东西?

感谢您的帮助。抱歉提出所有问题。

PS > 我选择使用动画 UIView 方法是因为我需要调用 ViewController 继续存在并显示在后台,并且它还包含一个 NSTimer 在用户使用弹出 View 时滴答作响。可以并希望调用 ViewController 在那里并且它的 NSTimer 继续运行,但是在 View 有机会实际出现并强制用户与其交互之前,它在代码中向前移动到 showProfileView 之外是完全糟糕的(或者按下取消按钮或四处浏览并按下另一面的切换按钮)

最佳答案

我不确定您的要求是什么。但是您必须了解 UIView 操作是一次性执行的。

所以:

用户触摸一张脸:

- (IBAction)handleTapFace1:(UITapGestureRecognizer *)sender
{
NSLog(@"Face 1 tapped!");
[self showProfileView:0];
}

然后你将回调放在另一个方法中:

- (void)goAhead
{
if (returnedSwitchIndex != NO_SWITCH)
{
// Animate switch
[self performVisualSwitch: selectedFaceIndex to:returnedSwitchIndex];
}
}

最后,当您需要时(在用户与 popover 交互后)调用 goAhead 方法,例如:

- (void)popoverControllerDidDismissPopover:(UIPopoverController *)popoverController
{
[self goAhead];
}

关于ios - 如何在继续之前强制用户与 UIView 交互?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19538095/

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