hide and show WKInterfaceGroup programmatically

前端 未结 3 1610
孤街浪徒
孤街浪徒 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:26

    Yes, there is no property for hide group in WKInterfaceGroup.
    But there is same property available in WkInterfaceObject which is super class of WKInterfaceGroup.

    so you can do same like
    [group setHidden:YES]
    or
    [group setHidden=NO]

提交回复
热议问题