tags:

views:

116

answers:

1

I want to invisible some text which is show by leble.I can invisible using this ( leblename.visible = NO; ).But some time it's create problem when i call different screen.I need different way for invisible leble text which is not create this type of problem.

A: 

You could add/remove the label from the layer to hide/show it, just retain the label instance for later retrieval. Although, [yourLabel setVisible:NO] should not cause problems between scenes.

David Higgins