How to set CMutablePointer to false in Swift?

后端 未结 3 770
醉酒成梦
醉酒成梦 2021-02-14 02:35

Basically I\'m using the AssetsLibrary frameworks in Swift, how could I modify the value of the stop pointer to NO/False/0 (I don\'t even know what value it should except) ?

3条回答
  •  暖寄归人
    2021-02-14 03:03

    As of Xcode 6 beta 4, you can now do:

    stop.memory = true
    

    Or, as holex noted, you can:

    stop.initialize(true)
    

提交回复
热议问题