问题标签 [dismiss]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ios - 有没有办法在一段时间后关闭无按钮 UIalertView?
-dismissWithClickedButtonIndex:animated: method
我想在它显示一段时间后关闭alerview,但是当alerview没有按钮时,如果我调用它就不起作用performSelector:withObject:afterDelay:
-还有其他方法可以关闭它吗?感谢您的任何想法!
android - 在 TabActivity 中切换到新选项卡时关闭 Android PopupWindow?
我有一个 MapActivity 作为 TabActivity 中的四个选项卡之一。这个 MapActivity 可以启动一个作为图例的 PopupWindow。PopupWindow 保留在屏幕上的地图顶部,直到再次单击“显示图例”按钮(来回等)。
问题是,当用户切换到另一个选项卡时,PopupWindow 在视图中保持不变。
我尝试在 MapActivity 类中实现 onPause() 方法,并从那里将其关闭。应用力在此方法到位后关闭。
有什么帮助吗?谢谢!
编辑:这是我的一些代码:
在 MainActivity 中,它建立了四个选项卡:
现在在我的 MapActivity 类(扩展 MapActivity)中:
我希望这提供了一个我在哪里的想法。地图选项卡上的一切都运行良好。只有当您显示图例并切换选项卡时,它仍会显示在其他视图上。
iphone - 如何关闭 imagePickerController?
我就是不明白:
我怎么能在 xcode 上“关闭”imagePickerController?这是打开相机的代码,它工作得很好..
}
好的,假设我想通过单击按钮来关闭 imagePickerController(意味着不选择任何图像):我应该怎么做?试过:
}
但它不起作用!有什么线索吗?提前致谢
iphone - 如何解除两个或多个dismissModalViewController?
我需要关闭两个模态视图控制器,我知道如何弹出两个或多个视图控制器
这就是我可以导航回我的第一个视图的方式,但是如果有两个或多个关闭模式视图,那么我该如何导航回来
请帮帮我,谢谢,马丹·莫汉
iphone - 将完成按钮添加到 iPhone 上的数字键盘键盘
我使用下面这个方便的代码成功地在我的数字键盘上添加了一个完成按钮。但我有一个启动 MFMailComposeViewController 的电子邮件按钮。如何确保完成按钮不出现在电子邮件键盘上?
我正在尝试扩展 UIViewController 以便在我导入此子类时自动执行此操作,因此我的应用程序中的布尔标志可能不起作用。
iphone - UIAlertView disappears when app goes to background and come back to foreground
I am developing an iPhone application (iPhone with multi tasking support) in which I am displaying UIAlertView on error. When UIAlertView is about to get display my app is sent to background. Now, if I try to get my app in the foreground, UIAlertView gets displayed for a moment and gets dismissed automatically even if I don't call dismiss/click on any button.
Does anyone knows what the problem is?
Thanks and Regards, Deepa
iphone - 我如何判断何时使用 UIWebview 的键盘从键盘击中 go?
我有一个简单的模态视图,其中包含一个 web 视图,当用户需要在基于 Web 的 iPhone 应用程序中进行身份验证时会弹出该视图。用户使用实际的网站登录进行身份验证,然后他们应该点击完成,并且视图关闭。
一旦用户在 webview 的键盘上点击 go,我需要能够触发驳回命令。我知道它是如何使用 UITextfieldDelegate 和 textFieldShouldReturn 方法完成的,但我无法使用 webview 的键盘让它工作。
如何捕获该事件并调用我的解除方法?
iphone - 在dismissModalViewControllerAnimated后设置参数为超级视图
我有 2 个视图(视图 A 和视图 B)。
在 viewA 中,当我触摸一个按钮时,我执行此代码来翻转 viewB:
现在,当我回到 viewA 时,我使用以下代码:
执行解除时,我需要为 viewA 设置相同的参数。我该怎么做?
编辑 我还没有找到任何解决方案,我以这种方式使用了 pushNavigation:
ipad - How to make popover view dismiss itself and set background image for nested UITableView
I have 2 question about popover view that:
I use popoverController to show a UIViewController with a NavigationController, in this viewController contain 2 UITableViews, Cancel and Done buttons on navigationController.
1 - When I tried to set background color or background image (by [UIColor colorWithPatternImage:[UIImage imageNamed:@"ViewBg.png"]];), but there is no effect for both tableView and viewController.view. The background color still as default color.
2 - I would like to dismiss the popView when tapping on Cancel or Done button, I tried to pass popoverController to nested viewController then call dismissPopoverAnimated: but not luck.
Does anyone know how to do this please help me! Thanks in advance!
ipad - 通过按下内容视图上的按钮来关闭弹出视图
我正在实现一个设置视图,该视图在主视图中作为弹出控制器的内容视图加载,问题是:
设置视图上有 2 个按钮:取消和完成,用于中止或保存并应用更改,然后关闭弹出视图,我已经将 popoverController 实例从主视图传递到设置视图,然后调用:
[popoverControllerdismissPopoverAnimated:YES];
但是什么也没发生,弹出视图仍然可见,直到我点击它之外的某个地方。我已经在互联网上搜索但尚未找到答案。
有谁知道如何做到这一点,请帮助我!