FoundationExtension
FoundationExtension is common Foundation/UIKit/Cocoa shortcuts and snippets collection.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
NSASubscript.h
Go to the documentation of this file.
1 //
2 // NSASubscript.h
3 // FoundationExtension
4 //
5 // Created by Jeong YunWon on 2014. 9. 19..
6 // Copyright (c) 2014년 youknowone.org. All rights reserved.
7 //
8 
17 #import <Foundation/Foundation.h>
18 
23 
32 - (id)objectAtIndexedSubscript:(NSUInteger)index;
33 
34 @end
35 
40 
47 - (void)setObject:(id)obj atIndexedSubscript:(NSUInteger)index;
48 
49 @end
50 
55 
62 - (id)objectForKeyedSubscript:(id)key;
63 
64 @end
65 
70 
77 - (void)setObject:(id)obj forKeyedSubscript:(id <NSCopying>)key;
78 
79 @end
The indexed subscript getter protocol NSAIndexedSubscript must be adopted and implemented by immutabl...
Definition: NSASubscript.h:22
The indexed subscript setter protocol NSAMutableIndexedSubscript must be adopted and implemented by m...
Definition: NSASubscript.h:39
The keyed subscript setter protocol NSAMutableKeyedSubscript must be adopted and implemented by mutab...
Definition: NSASubscript.h:69
The keyed subscript getter protocol NSAKeyedSubscript must be adopted and implemented by immutable ob...
Definition: NSASubscript.h:54