| 123456789101112131415 |
- //
- // DetailKVCell.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 14-7-5.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RTLabel.h"
- @interface DetailKVCell : UITableViewCell
- @property (strong, nonatomic) IBOutlet UILabel *keyLabel;
- @property (strong, nonatomic) IBOutlet RTLabel *valLabel;
- @end
|