如何从其他数组中的数组中获取元素

时间:2018-03-26 03:23:53

标签: ios objective-c arrays

我有一个这样的课。

@interface PathArray : NSObject
@property (nonatomic) CGPoint start;
@property (nonatomic) CGPoint end;
@property (nonatomic) UIColor* color;
@property (nonatomic) CGFloat pathWidth;
- (instancetype) initWithStartPoint: (CGPoint)start andEnd: (CGPoint)end andColor: (UIColor *) color andPathWidth: (CGFloat) pathWidth;
@end

我有2个阵列

NSMutableArray *pathArray;
NSMutableArray<PathArray*> *tempPathArray;

所以问题是:我如何在这样的循环中从tempPathArray中获取元素:

for ( int i=0; i<pathArray.count; i++ ) {
        for( int j=0; j<tempPathArray.count; j++ ) {
            pathArray[i].tempPathArray[j]???
        }
    }

感谢您的帮助!

0 个答案:

没有答案