Reputation: 290
I just started to work on a new project. It has a lot of legacy code and I found the following code
@interface WLLeftSideViewController : UIViewController {
@private
__weak IBOutlet UIButton *_signInButton;
__weak IBOutlet UIButton *_signOutButton;
__weak IBOutlet UILabel *_nameLabel;
__weak IBOutlet UILabel *_emailLabel;
__weak IBOutlet WLLeftSideMenuView *_tableView;
__weak IBOutlet UIButton *_settingsButton;
__weak IBOutlet NSLayoutConstraint *_heightConstraint;
}
I have a couple of doubts:
Thanks
Upvotes: 0
Views: 39
Reputation: 4585
The key word here is legacy
Upvotes: 3