JXTelAreaCell.h 415 B

12345678910111213141516171819202122
  1. //
  2. // JXTelAreaCell.h
  3. // shiku_im
  4. //
  5. // Created by daxiong on 17/4/24.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #define TELAREA_CELL_HEIGHT 42
  10. @interface JXTelAreaCell : UITableViewCell{
  11. UILabel *_countryName;
  12. UILabel *_areaNum;
  13. }
  14. @property (nonatomic,strong) UIView *bottomLine;
  15. - (void)doRefreshWith:(NSDictionary *)dict language:(NSString *)language;
  16. @end