我想将ITSwitch从obj-c移植到swift。 https://github.com/iluuu1994/ITSwitch.git
ITSwitch.m中的
@property (readonly, strong) CALayer *rootLayer;
所以我快速写道:
var rootLayer:CALayer?
但是代码给了我这个错误:
Use of module 'CALayer' as a type
错误是什么意思? 我该如何解决这个问题?
答案 0 :(得分:14)
如果您在import QuartzCore
文件的顶部添加.swift
,错误就会消失。错误消息本身似乎有点像错误。