自定義訂閱
你可以通過實現所需的方法來新增對你自己的類的下標。
對於索引下標(如陣列):
- (id)objectAtIndexedSubscript:(NSUInteger)idx
- (void)setObject:(id)obj atIndexedSubscript:(NSUInteger)idx
對於鍵控下標(如字典):
- (id)objectForKeyedSubscript:(id)key
- (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key