29 lines
828 B
Objective-C
29 lines
828 B
Objective-C
//
|
|
// InfoViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/10/8.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "MBProgressHUD.h"
|
|
#import "BaseVIewContorller.h"
|
|
@interface InfoViewController : BaseVIewContorller<UITextViewDelegate,UITableViewDataSource,UITableViewDelegate>
|
|
|
|
@property (weak, nonatomic) IBOutlet UITableView *infoTab;
|
|
|
|
@property (strong, nonatomic) UIImageView *backImg;
|
|
|
|
@property (strong, nonatomic) UIImageView *userImg;
|
|
|
|
@property(nonatomic,strong) UIView *headerView;
|
|
|
|
@property(nonatomic,strong)UIImage*saveImage;
|
|
@property(nonatomic,strong)NSArray*sexArr;
|
|
@property(nonatomic,strong)UIActionSheet*photosheet;
|
|
@property(nonatomic,strong)UIActionSheet*sexsheet;
|
|
@property(nonatomic,copy)NSString*fullpath;
|
|
@property(nonatomic,strong)MBProgressHUD *HUD;
|
|
@end
|