self.cards[index]
[self.cards objectAtIndexedSubscript]
@property(copy) NSString *title;
- (void)setTitle:(NSString *)newTitle;
SEL someMethod = @selector(sayHello);
SEL - Selectors are Obj-C’s internal representation of method names. This stores a method called sayHello in someMethod that could be used to dynamically call a method at runtime.
@property (readonly)
Getter only; no setter or assignment via dot-notation