我有一个这样的课。
@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]???
}
}
感谢您的帮助!