在我的 iOS 应用程序的实时场景中有几个错误。我无法理解 Core Foundation 上的这个特定错误,它影响了我的应用程序中的多个用户。流程没有中断我的任何项目文件,我不确定是什么导致了这次崩溃。
附上 crashlytics 日志。任何建议或帮助都会有很大帮助,thanx。
CoreFoundation _CF_forwarding_prep_0
Fatal Exception: NSInvalidArgumentException -[_UIAlertControllerAlertPresentationController adaptivePresentationController]: unrecognized selector sent to instance 0x133e29870
Fatal Exception: NSInvalidArgumentException
0 CoreFoundation 0x18ff391b8 __exceptionPreprocess
1 libobjc.A.dylib 0x18e97055c objc_exception_throw
2 CoreFoundation 0x18ff40268 __methodDescriptionForSelector
3 CoreFoundation 0x18ff3d270 ___forwarding___
4 CoreFoundation 0x18fe3680c _CF_forwarding_prep_0
5 UIKit 0x19689708c -[UISearchController _searchPresentationController]
6 UIKit 0x19648f8cc -[_UISearchControllerTransplantSearchBarAnimator animateTransition:]
7 UIKit 0x19613d464 __56-[UIPresentationController runTransitionForCurrentState]_block_invoke
8 UIKit 0x19607ffdc _runAfterCACommitDeferredBlocks
9 UIKit 0x196071d50 _cleanUpAfterCAFlushAndRunDeferredBlocks
10 UIKit 0x195de10b4 _afterCACommitHandler
11 CoreFoundation 0x18fee60c0 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__
12 CoreFoundation 0x18fee3cf0 __CFRunLoopDoObservers
13 CoreFoundation 0x18fee4180 __CFRunLoopRun
14 CoreFoundation 0x18fe122b8 CFRunLoopRunSpecific
15 GraphicsServices 0x1918c6198 GSEventRunModal
16 UIKit 0x195e597fc -[UIApplication _run]
17 UIKit 0x195e54534 UIApplicationMain
18 Levo 0x1000c1c30 main (AppDelegate.swift:22)
19 libdispatch.dylib 0x18edf55b8 (Missing)
func showErrorView(errorType: ErrorType, retryClickDelegate: ErrorViewRetryClickDelegate?) {
var message = ""
switch errorType {
case .INTERNET:
message = "Your internet connection does not seem to be working. Kindly ensure that you are connected to the internet and try again"
break
case .INVALID_DATA:
message = "Something went wrong. Please try again!"
break
case .JSON_PARSING:
message = "Something went wrong. Please try again!"
break
case .UNAUTHORIZED:
self.showInformativeAlert("Logged Out", message: "Looks like you have been logged out. Please login in again!", completion: nil)
self.switchStoryboard(Storyboard.SIGNIN)
return
default:
message = "Something went wrong. Please try again!"
}
let errorAlert = UIAlertController(title: "Error", message: message, preferredStyle: .Alert)
if let retryClickDelegate = retryClickDelegate {
errorAlert.addAction(UIAlertAction(title: "Try again", style: UIAlertActionStyle.Default, handler: { (action) in
retryClickDelegate.onErrorRetryClicked(errorType)
errorAlert.dismissViewControllerAnimated(true, completion: nil)
}))
}
errorAlert.addAction(UIAlertAction(title: "Dismiss", style: UIAlertActionStyle.Default, handler: nil))
if (isTopViewController) {
self.presentViewController(errorAlert, animated: true, completion: nil)
}
}
func showInformativeAlert(title: String?, message: String?,completion : (() -> Void)?) {
let informativeAlert = UIAlertController(title: title, message: message, preferredStyle: UIAlertControllerStyle.Alert)
informativeAlert.addAction(UIAlertAction(title: "Got it!", style: UIAlertActionStyle.Default, handler: { (action) in
informativeAlert.dismissViewControllerAnimated(true, completion: nil)
completion?()
}))
self.presentViewController(informativeAlert, animated: true, completion: nil)
}
public var isTopViewController: Bool {
if self.navigationController != nil {
return self.navigationController?.visibleViewController === self
} else if self.tabBarController != nil {
return self.tabBarController?.selectedViewController == self && self.presentedViewController == nil
} else {
return self.presentedViewController == nil && self.isVisible
}
}
最佳答案
我认为问题是您没有正确使用完成处理程序,因此同时出现和消失了一个警报。例如,而不是:
informativeAlert.dismissViewControllerAnimated(true, completion: nil)
completion?()
你应该使用
informativeAlert.dismissViewControllerAnimated(true, completion: completion)
此外,如果 View Controller 动画正在进行中,isTopViewController 的实现很容易失败。
例如,如果您调用 showErrorView 两次,isTopViewController 可能对两次调用都为 true 并且两个警报将同时开始出现,使您的应用崩溃。
关于ios - 无法识别的选择器发送到实例 _UIAlertControllerAlertPresentationController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41846407/
我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-
我对最新版本的Rails有疑问。我创建了一个新应用程序(railsnewMyProject),但我没有脚本/生成,只有脚本/rails,当我输入ruby./script/railsgeneratepluginmy_plugin"Couldnotfindgeneratorplugin.".你知道如何生成插件模板吗?没有这个命令可以创建插件吗?PS:我正在使用Rails3.2.1和ruby1.8.7[universal-darwin11.0] 最佳答案 随着Rails3.2.0的发布,插件生成器已经被移除。查看变更日志here.现在
我尝试运行2.x应用程序。我使用rvm并为此应用程序设置其他版本的ruby:$rvmuseree-1.8.7-head我尝试运行服务器,然后出现很多错误:$script/serverNOTE:Gem.source_indexisdeprecated,useSpecification.Itwillberemovedonorafter2011-11-01.Gem.source_indexcalledfrom/Users/serg/rails_projects_terminal/work_proj/spohelp/config/../vendor/rails/railties/lib/r
我正在查看instance_variable_set的文档并看到给出的示例代码是这样做的:obj.instance_variable_set(:@instnc_var,"valuefortheinstancevariable")然后允许您在类的任何实例方法中以@instnc_var的形式访问该变量。我想知道为什么在@instnc_var之前需要一个冒号:。冒号有什么作用? 最佳答案 我的第一直觉是告诉你不要使用instance_variable_set除非你真的知道你用它做什么。它本质上是一种元编程工具或绕过实例变量可见性的黑客攻击
在我的应用程序中,我需要能够找到所有数字子字符串,然后扫描每个子字符串,找到第一个匹配范围(例如5到15之间)的子字符串,并将该实例替换为另一个字符串“X”。我的测试字符串s="1foo100bar10gee1"我的初始模式是1个或多个数字的任何字符串,例如,re=Regexp.new(/\d+/)matches=s.scan(re)给出["1","100","10","1"]如果我想用“X”替换第N个匹配项,并且只替换第N个匹配项,我该怎么做?例如,如果我想替换第三个匹配项“10”(匹配项[2]),我不能只说s[matches[2]]="X"因为它做了两次替换“1fooX0barXg
我正在尝试在我的centos服务器上安装therubyracer,但遇到了麻烦。$geminstalltherubyracerBuildingnativeextensions.Thiscouldtakeawhile...ERROR:Errorinstallingtherubyracer:ERROR:Failedtobuildgemnativeextension./usr/local/rvm/rubies/ruby-1.9.3-p125/bin/rubyextconf.rbcheckingformain()in-lpthread...yescheckingforv8.h...no***e
我花了三天的时间用头撞墙,试图弄清楚为什么简单的“rake”不能通过我的规范文件。如果您遇到这种情况:任何文件夹路径中都不要有空格!。严重地。事实上,从现在开始,您命名的任何内容都没有空格。这是我的控制台输出:(在/Users/*****/Desktop/LearningRuby/learn_ruby)$rake/Users/*******/Desktop/LearningRuby/learn_ruby/00_hello/hello_spec.rb:116:in`require':cannotloadsuchfile--hello(LoadError) 最佳
如果您尝试在Ruby中的nil对象上调用方法,则会出现NoMethodError异常并显示消息:"undefinedmethod‘...’fornil:NilClass"然而,有一个tryRails中的方法,如果它被发送到一个nil对象,它只返回nil:require'rubygems'require'active_support/all'nil.try(:nonexisting_method)#noNoMethodErrorexceptionanymore那么try如何在内部工作以防止该异常? 最佳答案 像Ruby中的所有其他对象
我在pry中定义了一个函数:to_s,但我无法调用它。这个方法去哪里了,怎么调用?pry(main)>defto_spry(main)*'hello'pry(main)*endpry(main)>to_s=>"main"我的ruby版本是2.1.2看了一些答案和搜索后,我认为我得到了正确的答案:这个方法用在什么地方?在irb或pry中定义方法时,会转到Object.instance_methods[1]pry(main)>defto_s[1]pry(main)*'hello'[1]pry(main)*end=>:to_s[2]pry(main)>defhello[2]pry(main)
我使用的是Firefox版本36.0.1和Selenium-Webdrivergem版本2.45.0。我能够创建Firefox实例,但无法使用脚本继续进行进一步的操作无法在60秒内获得稳定的Firefox连接(127.0.0.1:7055)错误。有人能帮帮我吗? 最佳答案 我遇到了同样的问题。降级到firefoxv33后一切正常。您可以找到旧版本here 关于ruby-无法在60秒内获得稳定的Firefox连接(127.0.0.1:7055),我们在StackOverflow上找到一个类