CityButton.h 314 B

1234567891011121314151617
  1. //
  2. // CityButton.h
  3. // ChinaCityList
  4. //
  5. // Created by zjq on 15/10/27.
  6. // Copyright © 2015年 zhengjq. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CityItem.h"
  10. @interface CityButton : UIButton
  11. @property (nonatomic, assign) NSInteger index;
  12. @property (nonatomic, strong) CityItem *cityItem;
  13. @end