- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用普通的 UIAlertView
时遇到了一些问题。
场景:我的应用程序能够导入它自己的数据类型(用于备份/恢复)。在 -application:openURL:sourceApplication:annotation:
上,我创建导入器类并启动导入操作本身。在实际导入开始之前,应询问用户是否要删除/覆盖其旧数据库。
UIAlertView
显示得很好。当我点击两个按钮之一(Yes
和 No
)时,应用程序崩溃,控制台上没有任何信息。我正在主线程上发出警报。它的创建方式如下:
UIAlertView *dataAvailableAlert = [[UIAlertView alloc] initWithTitle:alertTitle
message:alertMessage
delegate:self
cancelButtonTitle:noButtonTitle
otherButtonTitles:yesButtonTitle, nil];
[dataAvailableAlert show];
我的类采用UIAlertViewDelegate
并实现-alertView:clickedButtonAtIndex:
。后者根本没有被调用。 更新:我正在使用 ARC。回溯:
* thread #1: tid = 0x1c03, 0x01bc809f libobjc.A.dylib`objc_msgSend + 19, stop reason = EXC_BAD_ACCESS (code=1, address=0xfd940000)
frame #0: 0x01bc809f libobjc.A.dylib`objc_msgSend + 19
frame #1: 0x00eee0bc UIKit`-[UIAlertView(Private) _buttonClicked:] + 294
frame #2: 0x01bca705 libobjc.A.dylib`-[NSObject performSelector:withObject:withObject:] + 77
frame #3: 0x00afe2c0 UIKit`-[UIApplication sendAction:to:from:forEvent:] + 96
frame #4: 0x00afe258 UIKit`-[UIApplication sendAction:toTarget:fromSender:forEvent:] + 61
frame #5: 0x00bbf021 UIKit`-[UIControl sendAction:to:forEvent:] + 66
frame #6: 0x00bbf57f UIKit`-[UIControl(Internal) _sendActionsForEvents:withEvent:] + 578
frame #7: 0x00bbe6e8 UIKit`-[UIControl touchesEnded:withEvent:] + 546
frame #8: 0x00b2dcef UIKit`-[UIWindow _sendTouchesForEvent:] + 846
frame #9: 0x00b2df02 UIKit`-[UIWindow sendEvent:] + 273
frame #10: 0x00b0bd4a UIKit`-[UIApplication sendEvent:] + 436
frame #11: 0x00afd698 UIKit`_UIApplicationHandleEvent + 9874
frame #12: 0x02779df9 GraphicsServices`_PurpleEventCallback + 339
frame #13: 0x02779ad0 GraphicsServices`PurpleEventCallback + 46
frame #14: 0x024b5bf5 CoreFoundation`__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__
+ 53
frame #15: 0x024b5962 CoreFoundation`__CFRunLoopDoSource1 + 146
frame #16: 0x024e6bb6 CoreFoundation`__CFRunLoopRun + 2118
frame #17: 0x024e5f44 CoreFoundation`CFRunLoopRunSpecific + 276
frame #18: 0x024e5e1b CoreFoundation`CFRunLoopRunInMode + 123
frame #19: 0x027787e3 GraphicsServices`GSEventRunModal + 88
frame #20: 0x02778668 GraphicsServices`GSEventRun + 104
frame #21: 0x00afaffc UIKit`UIApplicationMain + 1211
frame #22: 0x00002e8d Foo`main(argc=1, argv=0xbffff61c) + 141 at main.m:16
frame #23: 0x00002db5 Foo`start + 53
知道这里出了什么问题吗?
谢谢
–f
更新:按照全类的要求。
@implementation NEADatabaseImporter
- (id)initWithDictionary:(NSDictionary *)importDictionary {
self = [super init];
if (self) {
_importDictionary = importDictionary;
}
return self;
}
- (void)startImport {
// check if the current database already has some data in it
BOOL dataCreated = ([[NEADataAccessor groups] count] > 1);
// if so ask the user if he wants to delete the old data
if (dataCreated) {
// prepare variables for better reading
NSString *alertTitle = NSLocalizedString(@"REPLACE_DATABASE_TITLE", @"The title for the alert asking the user to let the app replace his database upon import.");
NSString *alertMessage = NSLocalizedString(@"REPLACE_DATABASE_MESSAGE", @"The message the alert displays when asking the user for permission to replace the database upon import.");
NSString *yesButtonTitle = NSLocalizedString(@"YES", @"Yes");
NSString *noButtonTitle = NSLocalizedString(@"NO", @"No");
UIAlertView *dataAvailableAlert = [[UIAlertView alloc] initWithTitle:alertTitle
message:alertMessage
delegate:self
cancelButtonTitle:noButtonTitle
otherButtonTitles:yesButtonTitle, nil];
[dataAvailableAlert show];
} else {
// if there was no data yet we can directly invoke the import
[self removeDatabase];
[self readDatabaseImportDictionary];
}
}
- (void)removeDatabase {
NEAAppDelegate *delegate = (NEAAppDelegate *)[[UIApplication sharedApplication] delegate];
[[delegate databaseManager] clearStores];
}
- (void)readDatabaseImportDictionary {
if (![self importDictionary]) return;
// read it here
NEAAppDelegate *delegate = (NEAAppDelegate *)[[UIApplication sharedApplication] delegate];
[[delegate currentProfile] readDataDictionary:[self importDictionary]];
}
#pragma mark - UIAlertViewDelegate
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
NSInteger yesIndex = 1;
if (buttonIndex == yesIndex) {
// go ahead and replace the database
[self removeDatabase];
[self readDatabaseImportDictionary];
} else {
// cancel the import
NSLog(@"import of dictionary canceled: %@", [self importDictionary]);
}
}
@end
更新:shannoga 是对的。看来我的 NEADatabaseImporter
发布得太早了。当我将其作为调用类的强大属性时,它工作得很好。但让一切都成为强大的属性(property)并不能解决问题,不是吗?使用 ARC 强存储局部变量的正确方法是什么?
最佳答案
好吧,这是一个猜测,但几个月前我也遇到了同样的问题。
我的问题是警报 View 的委托(delegate)在呈现后被释放,因此当警报被解除时,它会向其委托(delegate)发送一条消息,但它不再存在。
另一种选择是呈现警报 View 的 viewController 在呈现后释放。
所以基本上检查谁是警报委托(delegate)在提交后是否没有被释放。
希望对你有帮助
关于ios - 点击按钮时 UIAlertView 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18161491/
当点击content 时,我想触发我的alert。我的 content 中可以有任意数量的子元素,所以我不想对每个元素都进行硬编码。我想也许我可以监听对该父元素的点击,然后每次点击子元素都会触发我的操
对于 Mac 应用程序,我想检测应用程序中的用户事件,因此我可以定期让 Web 服务知道用户在端点上仍然处于事件状态。 在 Cocoa Touch 中,我会覆盖 UIApplication 的 sen
第一次在这里发帖,但天知道我一直使用这个网站来搜索问题 :P 好吧,我现在遇到了自己的问题,我似乎无法轻松地在 Google 上搜索,在玩了大约 2 小时后,我终于决定发布一个问题,看看你们是怎么想的
Angular 触控 ngTouch导致在触摸释放时发生点击。 有没有办法让点击发生在触摸开始? fast-click下面的指令似乎可以在触摸屏上执行我想要的操作,但它不适用于鼠标点击。 myApp.
1) 如果我有这个,当我点击子 Container 时它不会打印'tap': Container( color: Colors.red, child: GestureDetector(
我简直要发疯了,只是想从 jQuery 中的事件中解除 onclick 处理程序的绑定(bind),以便稍后可以将其绑定(bind)到另一个函数。 我已将代码隔离在测试页中,因此除了核心之外什么都没有
我有一个有趣的情况。我需要触发实时点击,因为简单的点击不起作用。 这就是我所拥有的: $('.text').trigger('click'); 但我需要这样的东西: $('.text').trigge
这是我的作业,这是我第一次做表单验证。以下代码分别是我的HTML代码和JavaScript代码。 HTML 代码: First N
正如标题所示,如何获取 Magento 中特定产品的浏览量/点击量/展示次数。欢迎任何帮助。 最佳答案 这个简单的示例将为您提供在您指定的日期+其查看次数之间查看过的产品列表: $fromDate =
我正在创建一个应用程序,但在其中遇到错误。我想在按钮上添加 OnclickListner。该按钮位于 fragment 类上。从这个 fragment 类我想继续另一个类。代码如下: fragment
我在数组中有一些值。首先,我想在 View 中显示该数组的前两个值,接下来我想在某些按钮单击操作后显示剩余的值,并将数组索引增加 1。例如:一次点击显示第三个值,然后另一次点击显示第四个值。 我怎样才
在下面的代码片段中,如果在链接上执行“CMD+CLICK”,则不会显示 alert('CMD')。这是为什么? 我想在用户按下 CMD 按钮(或 Windows 上的 CTRL 键)+单击 href
我希望在单击链接时开始加载一些内容。在单击该链接之前,我不希望它使用任何带宽。另外如何实现几乎所有灯箱中都能看到的旋转光标动画? 最佳答案 使用$.ajax()函数动态加载内容。 对于动画,请找到一个
我有如下的 DOM: users 当用户点击按钮时,它会将新的“td”附加到“tr”。它运作良好。问题:单击“a”我想打开两个链接。最好的方法是首先将当前页面重定向到另一个页面,然后
这是我正在尝试做的.. 点击按钮会显示一个随机数组项。 数组项只能显示一次。 目前我已经将代码设置为: 点击随机数组项显示。 按钮点击继续循环,没有结束。 按钮点击多次显示元素。 这是代码的链接 ht
我想创建...基本上是一个宏程序。点击记录后,它会记录所有鼠标(可能最终是键盘)事件。然后你可以保存,然后播放,鼠标应该移动并点击在相同的地方当你录制它时它会发生。 我知道如何获取全局鼠标事件,但我不
我有一个关于将 onClick 添加到 ListView 的问题,我已经尝试尽可能多地遵循 Android NotePad 教程,但是对于我的布局我不太明白如何添加它。 这是 Activity 类,它
我正在使用一个网站以表格的形式显示信息。用户可以单击表格中的行来更改它们的颜色,我还有一个按钮允许用户暂停页面的刷新,这样就不会添加新信息。这两个功能都适用于桌面,但不适用于触摸屏。我的第一个想法是触
所以我的网站上有一个正常的链接,我想为它添加跟踪。我可以设想很多方法来做到这一点,但我已经确定通过编写一个小的 jquery 函数并在我的标签中放置一个小片段来实现这一点非常简单: click me!
我正在尝试使我的图片按钮看起来不错。我尝试了几种不同的方法,但它们看起来都不对。这是一个圆形图像,我想让它看起来像是可以按下的。这是我到目前为止所得到的。 android:textAppearance
我是一名优秀的程序员,十分优秀!