Objective C in New job #print
Sep 3, 2021
Big company has lots of ObjC code
Swfit -> ObjC
/##Swift
var name:String = Mario
print(name)
/## ObjC
@interface ViewController ()
@property (nonatomic, strong) NSString* userName;
@end
@implementation ViewController
NSLog(@”%@”, self.userName);
@end