MARK叠萍、TODO戈钢、FIXME
// MARK: 類似于OC中的 #pragma mark
// MARK: - 類似于OC中的 #pragma mark -
// TODO: 用于標(biāo)記未完成的任務(wù)
// FIXME: 用于標(biāo)記待修復(fù)的問題
補(bǔ)充:
- 使用#warning("undo") 標(biāo)記未做的事情
- 定義有返回值函數(shù), 如果沒寫完可以用
fatalError()
占位
func test() -> Int {
#warning("undo")
fatalError()
}
條件編譯
// 操作系統(tǒng):macOS\iOS\tvOS\watchOS\Linux\Android\Windows\FreeBSD
#if os(macOS) || os(iOS)
// CPU 架 構(gòu) :i386\x86_64\arm\arm64
#elseif arch(x86_64) || arch(arm64)
// swift版本
#elseif swift(<5) && swift(>=3)
// 模擬器
#elseif targetEnvironment(simulator)
// 可以導(dǎo)入某模塊
#elseif canImport(Foundation) #else
#endif
#if DEBUG
// debug模式
#else
// release模式
#endif
#if TEST
print("test")
#endif
#if OTHER
print("other")
#endif
打印
func log<T>(_ msg: T,
file: NSString = #file,
line: Int = #line,
fn: String = #function) {
#if DEBUG
let prefix = "\(file.lastPathComponent)_\(line)_\(fn):"
print(prefix, msg)
#endif
}
系統(tǒng)版本檢測
if #available(iOS 10, macOS 10.12, *) {
// 對于iOS平臺试溯,只在iOS10及以上版本執(zhí)行
// 對于macOS平臺的畴,只在macOS 10.12及以上版本執(zhí)行
// 最后的*表示在其他所有平臺都執(zhí)行
}
API可用性說明
@available(iOS 10, macOS 10.15, *)
class Person {}
struct Student {
@available(*, unavailable, renamed: "study")
func study_() {}
func study() {}
@available(iOS, deprecated: 11)
@available(macOS, deprecated: 10.12)
func run() {}
}
更多用法參考:https://docs.swift.org/swift-book/ReferenceManual/Attributes.html
iOS程序的入口
在AppDelegate上面默認(rèn)有個(gè)
@UIApplicationMain
標(biāo)記,這表示
編譯器自動生成入口代碼(main函數(shù)代碼)节仿,自動設(shè)置AppDelegate為APP的代理也可以刪掉
@UIApplicationMain
,自定義入口代碼:新建一個(gè)main.swift文件
// main.swift
// TestDemo
import UIKit
class MyApplication: UIApplication {}
UIApplicationMain(CommandLine.argc,
CommandLine.unsafeArgv, NSStringFromClass(MyApplication.self), NSStringFromClass(AppDelegate.self))
Swift調(diào)用OC
- 1> 新建1個(gè)橋接頭文件掉蔬,文件名格式默認(rèn)為:{targetName}-Bridging-Header.h
- 如果直接創(chuàng)建OC類文件, 會提示(如下圖)并自動創(chuàng)建 {targetName}-Bridging-Header.h文件
- 2> 在 {targetName}-Bridging-Header.h 文件中 #import OC需要暴露給Swift的內(nèi)容
#import "Person.h"
Swift調(diào)用OC
- 1> Person.h 代碼
int sum(int a, int b);
@interface Person : NSObject
@property (nonatomic, assign) NSInteger age;
@property (nonatomic, copy) NSString *name;
- (instancetype)initWithAge:(NSInteger)age name:(NSString *)name;
+ (instancetype)personWithAge:(NSInteger)age name:(NSString *)name;
- (void)run;
+ (void)run;
- (void)eat:(NSString *)food other:(NSString *)other;
+ (void)eat:(NSString *)food other:(NSString *)other;
@end
- 2> Person.m 代碼
@implementation Person
- (instancetype)initWithAge:(NSInteger)age name:(NSString *)name {
if (self = [super init]) {
self.age = age;
self.name = name;
}
return self;
}
+ (instancetype)personWithAge:(NSInteger)age name:(NSString *)name {
return [[self alloc] initWithAge:age name:name];
}
+ (void)run { NSLog(@"Person +run"); }
- (void)run { NSLog(@"%zd %@ -run", _age, _name); }
+ (void)eat:(NSString *)food other:(NSString *)other {
NSLog(@"Person +eat %@ %@", food, other);
}
- (void)eat:(NSString *)food other:(NSString *)other {
NSLog(@"%zd %@-eat %@ %@", _age, _name, food, other);
}
@end
int sum(int a, int b) { return a + b; }
- 3> main.swift 中 swift代碼
var p = Person(age: 10, name: "Jack")
p.age = 18
p.name = "Rose"
p.run() // 18 Rose -run
p.eat("Apple", other: "Water") // 18 Rose -eat Apple Water
Person.run() // Person +run
Person.eat("Pizza", other: "Banana") // Person +eat Pizza Banana
print(sum(10, 20)) // 30
Swift調(diào)用OC – @_silgen_name
應(yīng)用場景1:
- 如果C語言暴露給Swift的函數(shù)名跟Swift中的其他函數(shù)名沖突了
- 可以在Swift中使用
@_silgen_name
修改C函數(shù)名
// C語言
int sum(int a, int b) {
return a + b;
}
// Swift
@_silgen_name("sum") func swift_sum(_ v1: Int32, _ v2: Int32) -> Int32
// C語言函數(shù)名, 重命名函數(shù) swift_sum
print(swift_sum(10, 20)) // 30
print(sum(10, 20)) // 30
應(yīng)用場景2:
_silgen_name
可以將系統(tǒng)私有函數(shù)重命名后使用.
OC調(diào)用Swift
- Xcode已經(jīng)默認(rèn)生成一個(gè)用于OC調(diào)用Swift的頭文件廊宪,文件名格式是: {targetName}-Swift.h
- OC項(xiàng)目中如果直接創(chuàng)建swift類文件, 會提示(如下圖)并自動創(chuàng)建 {targetName}-Bridging-Header.h文件
- 1> Car.swift 文件
import Foundation
@objcMembers class Car: NSObject {
var price: Double
var band: String
init(price: Double, band: String) {
self.price = price
self.band = band
}
func run() { print(price, band, "run") }
static func run() { print("Car run") }
}
extension Car {
func test() { print(price, band, "test") }
}
- 2> Swift暴露給OC的類最終繼承自NSObject
- 3> 使用
@objc
修飾需要暴露給OC的成員 - 4> 使用
@objcMembers
修飾類
代表默認(rèn)所有成員都會暴露給OC(包括擴(kuò)展中定義的成員)
最終是否成功暴露,還需要考慮成員自身的訪問級別
- 6> OC代碼
OC文件中導(dǎo)入#import "Test-Swift.h"
#import "Test-Swift.h"
int sum(int a, int b) {
Car *c = [[Car alloc] initWithPrice:10.5 band:@"BMW"];
c.band = @"Bently";
c.price = 108.5;
[c run]; // 108.5 Bently run [c test]; // 108.5 Bently test [Car run]; // Car run
return a + b;
}
OC調(diào)用Swift – @objc
可以通過 @objc
重命名Swift暴露給OC的符號名(類名眉踱、屬性名挤忙、函數(shù)名等)
@objc(Car)
@objcMembers class Car: NSObject {
var price: Double
@objc(name)
var band: String
init(price: Double, band: String) {
self.price = price
self.band = band
}
@objc(drive)
func run() { print(price, band, "run") }
static func run() { print("Car run") }
}
extension Car { @objc(exec:v2:)
func test() { print(price, band, "test") }
}
Car *c = [[Car alloc] initWithPrice:10.5 band:@"BMW"];
c.name = @"Bently";
c.price = 108.5;
[c drive]; // 108.5 Bently run
[c exec:10 v2:20]; // 108.5 Bently test
[Car run]; // Car run
思考:
1.為什么Swfit暴露給OC類最終要繼承自NSObject?
答:
OC依賴于runtime機(jī)制,runtime要求類有isa指針, 使用消息傳遞機(jī)制就需要繼承自NSObject
2.p.run()底層是怎么調(diào)用的?反過來,OC調(diào)用Swift底層又是如何調(diào)用?
答:運(yùn)行runtime機(jī)制, 執(zhí)行obj_msgSend
3.car.run()底層是怎么調(diào)用的?
答:
swift中, 調(diào)用暴露給OC類的方法,使用虛表.
如果實(shí)在要用OC的runtime機(jī)制, 可以在方法前加dynamic
關(guān)鍵字.
選擇器(Selector)
- Swift中依然可以使用選擇器,使用
#selector(name)
定義一個(gè)選擇器 - 必須是被
@objcMembers
或@objc
修飾的方法才可以定義選擇器
@objcMembers class Person: NSObject {
func test1(v1: Int) { print("test1") }
func test2(v1: Int, v2: Int) { print("test2(v1:v2:)") }
func test2(_ v1: Double, _ v2: Double) { print("test2(_:_:)") }
func run() {
perform(#selector(test1))
perform(#selector(test1(v1:)))
perform(#selector(test2(v1:v2:)))
perform(#selector(test2(_:_:)))
perform(#selector(test2 as (Double, Double) -> Void))
}
}