blob: 9b6890fc68213d20a75dc8048dc5d39b4e5eb736 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
@import Foundation;
#import <array>
#include <vector>
@interface IntegerArray : NSObject {
std::vector<NSUInteger> _numbers;
}
@property(readonly) NSUInteger count;
- (instancetype)initWithNumbers:(NSUInteger *)numbers count:(NSUInteger)count;
- (NSUInteger)numberAtIndex:(NSUInteger)index;
@end
int main(int argc, char **argv) {
auto numbers = std::array<NSUInteger, 3>{1, 2, 3};
NSLog(@"%@", [[IntegerArray alloc] initWithNumbers:numbers.data() count:numbers.size()]);
}
|