考虑以下方法:
- (void)doThingWith:(NSString *)string changeBoolean:(BOOL *)booleanPointer
{
// Do Something
*booleanPointer = NO;
}
我应该如何将其转换为Swift?
答案 0 :(得分:4)
这样的东西是等价的,但是我不确定你打算如何使用' NSString'变量,所以我省略了' inout'。
func doThingWith( string : String, inout changeBool : Bool ) {
//Do Something
changeBool = false
}