@interface Controller ()
@end
@implementation Controller
- (void)viewDidLoad
{
[super viewDidLoad];
}
@end
If I add @synchronized
will the code behave as a mutex lock that will lock until the thread finishes?
@interface Controller ()
@end
@implementation Controller
- (void)viewDidLoad
{
[super viewDidLoad];
}
@end
If I add @synchronized
will the code behave as a mutex lock that will lock until the thread finishes?