当前位置:  开发笔记 > IOS > 正文

Swift中的布尔指针

如何解决《Swift中的布尔指针》经验,为你挑选了1个好方法。

给出以下方法:

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

我应该如何将其翻译为Swift?



1> mdhomer..:

像这样的东西是等效的,但是我不确定您打算如何使用'NSString'变量,因此我省略了'inout'。

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

推荐阅读
mobiledu2402852357
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有