- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要帮助,谷歌搜索也让我一无所知,因此我会在这里发帖寻求指导和帮助。
我的情况是当你按下 Ok 之后我想要应用程序 delegate.m,我想要一个简单的重定向回到另一个 View 。这可能吗?
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
{
UIApplicationState state = [application applicationState];
if (state == UIApplicationStateActive) {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Daily Vibes"
message:notification.alertBody
delegate:self cancelButtonTitle:@"Okay"
otherButtonTitles:nil];
[alert show];
}
有可能吗??在他们点击取消按钮后,好吧,他们将被重定向回应用程序的特定页面???
最佳答案
试试这个:
使您的应用程序委托(delegate)符合 UIAlertViewDelegate 协议(protocol),并添加以下代码:
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
NSString *title = [alertView buttonTitleAtIndex:buttonIndex];
if([title isEqualToString:@"Okay"])
{
NSLog(@"Okay was selected.");
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
MyViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"MyViewController"];
[(UINavigationController*)self.window.rootViewController pushViewController:vc animated:NO];
}
else if([title isEqualToString:@"Hello"])
{
NSLog(@"Hello was selected.");
}
}
委托(delegate)捕获选定的按钮,检查标题,并采取相应的操作。在这种情况下,由于您位于应用程序委托(delegate)中,因此您必须手动推送 View Controller (您不在 View Controller 中,因此不允许推送)
关于iOS 重定向回应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23729165/
我已经构建了一个 Paypal 表单,如下例所示 ` 测试部分成功完成。但我不知道如何使用买家的交易 ID 检索 Paypal 响应,以便更改数据库中有
我成功发出了第一个请求,并且我想在其他类中访问我的 Volley 响应,我该怎么做,因为当我尝试这样做时,它会返回空响应 最佳答案 使用接口(interface)和回调 public interf
我真的被困在这里,老实说,我自己看不出有什么问题,而且我在我的网站上已经做过好几次这样的事情了。 我希望我的主页最多更新三个最新的新闻更新。我的表都设置了一个用于测试的条目。这是我的 php 代码,用
您好,我正在尝试回显从 mysqli 查询中选择的 2 个列,但看起来我做错了什么。 require('db_access.php'); $result = mysqli_query($db_conn
开始学习 PHP,在学习了基本的东西之后,这很容易,因为我在学校学习 C++,而且大部分东西都是相似的,我从 mysql 开始。一切正常,但我无法让 connect_errno 正常工作。 复制并粘贴
什么是命运 react ? Techempower.com 使用它们来对 Web 框架进行基准测试。我正在撰写有关 PHP 框架的文章,我想要一个易于理解的财富响应定义。 最佳答案 您可以在相关 te
我是初学者,所以我希望你能理解我。 我希望它在名为 usr 的 cookie 不为假时回显 javascript 代码。第一个 echo 完美运行,但 jquery 根本无法运行。 szeretlek
respond_to 可能不是那么明显?在 ruby 中工作。考虑一下: class A def public_method end protected def protect
我是一名优秀的程序员,十分优秀!