Inherit from a Swift class in Objective C OC继承Swift类)
七月 15, 2020
小时光
搜到的相关资料基本来自这个帖子**Inherit from a Swift class in Objective C
**。事实上一楼回复已经说的很明确了,Objective-C
不能继承Swift
类。
Unfortunately, it’s not possible to subclass a Swift class in Objective-C. Straight from the docs:
那么换个思路,为什么一定要用继承呢?用category
可以吗?经过我的测试是可以的,代码如下:
Swift文件
1 | import UIKit |
OC的.h文件
1 | #import <Foundation/Foundation.h> |
OC的.m文件
1 | #import "TestModel+Add.h" |
查看评论