hide and show WKInterfaceGroup programmatically

前端 未结 3 1679
孤街浪徒
孤街浪徒 2021-02-06 20:00

I\'m using xCode 6.2 beta 2 and tried to hide and show group programmatically but there is no method shown where i can write group.hidden=YES or group.hidden=

3条回答
  •  一个人的身影
    2021-02-06 20:15

    If you're using a swift you can use this code:

     mygroup.setHidden(true)// set true --> false if you want to show the group
    

提交回复
热议问题