123456789101112131415161718 |
- //
- // NSObject+MASSubscriptSupport.h
- // Masonry
- //
- // Created by Jonas Budelmann on 28/08/13.
- // Copyright (c) 2013 Jonas Budelmann. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface NSObject (MASSubscriptSupport)
- - (id)objectAtIndexedSubscript:(NSUInteger)idx;
- - (void)setObject:(id)obj atIndexedSubscript:(NSUInteger)idx;
- - (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key;
- - (id)objectForKeyedSubscript:(id)key;
- @end
|