因为我这也报了这个警告,所以把解决方法写到这个地方看是否其他人用的到,具体解决方法:
错误代码:Snapshotting a view that has not been rendered results in an empty snapshot. Ensure your view has been rendered at least once before snapshotting or snapshot after screen updates.
问题分析:iOS8在调用系统相机拍照时,会有一两秒的停顿,然后再弹出UIImagePickConroller,IOS7是没有这个问题的,在百度找了无数遍都没能解决这个问题,有说要将imagePickController设置为全局变量,有说要延时0.5秒再presentViewController的,各显神通,但很遗憾的都没能解决这个问题,今天特意单独写个Demo来研究此问题,终于取得了突破性的进展!
其实根本原因不在于系统拍照控制器上面,而是执行presentViewController这个动作本身!我们可以查看下UIViewController这个类,他有一个属性:
@property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle NS_AVAILABLE_IOS(3_2);
这是一个枚举值,在iOS7的SDK中,定义如下:
typedefNS_ENUM(NSInteger, UIModalPresentationStyle) { UIModalPresentationFullScreen = 0, #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_3_2 UIModalPresentationPageSheet, UIModalPresentationFormSheet, UIModalPresentationCurrentContext, #endif #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_7_0 UIModalPresentationCustom, UIModalPresentationNone = -1, #endif };
在iOS8的SDK中定义如下:
typedefNS_ENUM(NSInteger, UIModalPresentationStyle) { UIModalPresentationFullScreen = 0, UIModalPresentationPageSheetNS_ENUM_AVAILABLE_IOS(3_2), UIModalPresentationFormSheetNS_ENUM_AVAILABLE_IOS(3_2), UIModalPresentationCurrentContextNS_ENUM_AVAILABLE_IOS(3_2), UIModalPresentationCustomNS_ENUM_AVAILABLE_IOS(7_0), UIModalPresentationOverFullScreenNS_ENUM_AVAILABLE_IOS(8_0), UIModalPresentationOverCurrentContextNS_ENUM_AVAILABLE_IOS(8_0), UIModalPresentationPopoverNS_ENUM_AVAILABLE_IOS(8_0), UIModalPresentationNoneNS_ENUM_AVAILABLE_IOS(7_0) = -1, };
解决问题的关键部分来了,IOS8多了一个样式UIModalPresentationOverCurrentContext,IOS8中presentViewController时请将控制器的modalPresentationStyle设置为UIModalPresentationOverCurrentContext,问题解决!!
if([[[UIDevice currentDevice] systemVersion] floatValue]>=8.0) { self.modalPresentationStyle=UIModalPresentationOverCurrentContext; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。
我现在正在学习React本地,最近我收到了下面的日志消息。 {“名称”:“PropertyFinder”、“版本”:“0.0.1”、“private”:true、“脚本”:{“start”:“node node_modules/react-native/local-cli/cli.js start”、“test”:“jest”}、“dependencies”:{“react”:“^16.2.0”、
本文向大家介绍使用iOS推送时警告错误的解决方法,包括了使用iOS推送时警告错误的解决方法的使用技巧和注意事项,需要的朋友参考一下 在使用iOS推送时,出现下面错误: 解决方法:PORJECT --> Capabilities --> Background Modes --> Background fetch & Remote notifications -->选中为on 状态 我还遇到一种情况
vue3 新的 defineModel parent: <Input v-model:p_input="test_input" /> son: <el-input v-model="myInput" placeholder="Please input" /> 报警告: Extraneous non-emits event listeners (refresh) were passed to com
问题内容: DeprecationWarning:需要一个整数(got类型为float)。不建议使用隐式转换为整数,并且在将来的Python版本中可能会删除隐式转换。 DeprecationWarning:需要一个整数(got类型为float)。不建议使用隐式转换为整数,并且在将来的Python版本中可能会删除隐式转换。 问题答案: 警告与的坐标参数有关。浮点坐标将表示的原点位于窗口像素之间。那没
我在Eclipse中得到以下两个导入的错误: 错误是:“无法解决导入javafx.scene.control.警报”,第二个导入语句也是如此。 我使用的是Eclipse版本:Luna Service Release 2(4.4.2),并安装了带有最新JDK 1.8(1.8.0_45)的e(fx)clipse。 其他与javafx相关的导入语句没有问题,例如
配置了策略,一直没有报警,如何排查? 排查sender、alarm、judge、hbs、agent、transfer的log 浏览器访问alarm的http页面,看是否有未恢复的告警,如果有就是生成报警了,后面没发出去,很可能是邮件、短信发送接口出问题了,检查sender中配置的api 打开agent的debug,看是否在正常push数据 看agent配置,是否正确配置了heartbeat(hbs