26 lines
521 B
Objective-C
26 lines
521 B
Objective-C
//
|
|
// IfishMeViewController.h
|
|
// ifishTabTest
|
|
//
|
|
// Created by imac on 16/7/25.
|
|
// Copyright © 2016年 xiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface IfishMeViewController : UIViewController
|
|
|
|
@property(nonatomic,strong)NSArray*tileArr;
|
|
|
|
@property(nonatomic,strong)NSArray*headimgeArr;
|
|
|
|
@property (strong, nonatomic) UIImageView *backImg;
|
|
|
|
@property (strong, nonatomic) UIImageView *userImg;
|
|
|
|
@property(strong,nonatomic) UIButton *userNamebtn;
|
|
|
|
@property(nonatomic,strong) UILabel *Tlabel;
|
|
|
|
@end
|