标签:style blog http color os 使用 ar strong 文件
#import "XYZCustomCell.h" #import "XYZCustomView.h" #import "XYZCustomViewController.h"
let myCell = XYZCustomCell() myCell.subtitle = "A custom cell"
Importing Swift into Objective-C
当在OC里调用Swift中的代码时,须要依赖一个xcode自己主动生成的头文件,这个自己主动生成的头文件定义了项目中全部的Swift文件,这个头文件的命名为 “xxx-Swift.h” ,xxx为项目的名称,此外就不须要再做不论什么事情了,你仅仅须要在OC代码里导入这么一个文件,就能够跟没事一样拿随意一个Swift中的代码用了#import “ProductModuleName-Swift.h”
调用Swift代码 | 调用OC代码 | |
Swift代码 | 无需声明 | #import "ProductModuleName-Swift.h” |
OC代码 | 依赖bridging header文件 | #import "Header.h” |
标签:style blog http color os 使用 ar strong 文件
原文地址:http://www.cnblogs.com/mengfanrong/p/3955929.html