NALLabelsMatrix.h 442 Bytes
Newer Older
mei's avatar
mei committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
//
//  NALLabelsMatrix.h
//
//  Created by neeks on 04/02/14.
//  Copyright (c) 2014 neeks. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface NALLabelsMatrix : UIView 

@property (assign, nonatomic) BOOL m_bIsEditable;

- (id)initWithFrame:(CGRect)frame andColumnsWidths:(NSArray *)columns NS_DESIGNATED_INITIALIZER;

- (NSUInteger)rowsCount;

- (void)addRecord:(NSArray *)record;
- (void)removeRecordAtRow:(NSUInteger)uiRow;

@end