Swol中的Bool指针

时间:2015-12-17 03:26:10

标签: objective-c swift boolean

考虑以下方法:

- (void)doThingWith:(NSString *)string changeBoolean:(BOOL *)booleanPointer { // Do Something *booleanPointer = NO; }

我应该如何将其转换为Swift?

1 个答案:

答案 0 :(得分:4)

这样的东西是等价的,但是我不确定你打算如何使用' NSString'变量,所以我省略了' inout'。

func doThingWith( string : String, inout changeBool : Bool ) {
    //Do Something
    changeBool = false
}