博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Xcode7,ios9 issue ,warning合集
阅读量:6719 次
发布时间:2019-06-25

本文共 923 字,大约阅读时间需要 3 分钟。

1.Downcast from 'UIViewController' only unwraps optionals;did you mean to use'!'?

原:  let view = mainStory.instantiateInitialViewController() as! UIViewController

  window?.rootViewController = view

修改:

   if let view = mainStory.instantiateInitialViewController(){

 

            window?.rootViewController = view

        }

2.Call can throw, but it is not marked with 'try' and the error is not handled 或者 ambiguous reference to member 'appendpartwithfileurl'

原:formData.appendPartWithFileURL(filePath, name: "file")

修改:do {

       try formData.appendPartWithFileURL(filePath, name: "file")

} catch {

// TODO: handle error

}

3.Cannot convert value of type '[String : String?]' to expected argument type 'AnyObject?'

原:

let params = [ "url": urlTf.text ]

修改:let params = [ "url"urlTf.text  ?? "" ]

4.storyboard minimum font size greater than current font size

修改:在 inspector 下 修改 autoshrink fixed font size

 

 

 

 

 

转载于:https://www.cnblogs.com/-yfan/p/5223142.html

你可能感兴趣的文章
开发小组
查看>>
QSsh之SshConnection类
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
二级指针,指针数组和数组指针
查看>>
我的友情链接
查看>>
cobbler之蟒蛇监控实现监控系统安装进度
查看>>
zookeeper 原理(转)
查看>>
我在印尼工作的日子-初来乍到
查看>>
Linux/安卓+SPI以太网项目
查看>>
PostgreSQL MySQL 的一次速度测试
查看>>
C 语言程序设计
查看>>
Dns信息收集工具集合
查看>>
MQ产品比较-ActiveMQ-RocketMQ
查看>>
yii框架cridview的ajax更新
查看>>
STL容器选择
查看>>
android:layout_gravity 和 android:gravity 的区别
查看>>
嵌入式C题
查看>>
maven学习笔记
查看>>
说说Java线程池
查看>>