Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #import "ViewController.h"
- @interface ViewController ()
- @end
- @implementation ViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
- BOOL someBool = NO;
- if (someBool) {
- self.myView.hidden = NO;
- while (self.myView.isHidden) {
- NSLog(@"myView is hidden, but it should not be");
- self.myView.hidden = NO;
- }
- NSLog(@"myView is no longer hidden");
- }
- }
- @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement