// // RailADNameChooseVC.h // tongxin // // Created by WeiChaoZheng on 2018/11/7. // Copyright © 2018年 xTT. All rights reserved. // #import #import "baseViewController.h" #import "Rail.h" @interface RailADNameChooseVC : baseViewController @property (strong, nonatomic) IBOutlet UIView *topView; @property (strong, nonatomic) IBOutlet UIBarButtonItem *saveBtn; @property (strong, nonatomic) IBOutlet UITextField *addressTextField; /** 删除的 按钮 */ @property (strong, nonatomic) IBOutlet UIButton *closeBtn; /** */ @property (strong, nonatomic) IBOutlet UICollectionView *myCollection; @property (nonatomic,strong) Rail*infoRail; @end @interface RailADNameChooseCollectionCell : UICollectionViewCell /** item 标题Label */ @property (strong, nonatomic) IBOutlet UILabel *itemTitleLabel; @end