Yini  1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
BWMyLordInfoViewController.h
Go to the documentation of this file.
1 //
2 // BWMyLordInfoViewController.h
3 // Yini
4 //
5 // Created by siqi wang on 12-7-20.
6 // Copyright (c) 2012年 siqi wang. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 #import "BWLord.h"
11 #import "WSQFileUploader.h"
12 
13 @interface BWMyLordInfoViewController : UIViewController<UIImagePickerControllerDelegate, UINavigationControllerDelegate, BWLordInfoDelegate, WSQFileUploaderDelegate>
14 {
15  UIImage *pickedImage;
16 }
17 - (IBAction)choosePicture:(id)sender;
18 
19 @property (nonatomic, strong) BWLord *lord;
20 
21 @property (strong, nonatomic) IBOutlet UIImageView *profilPic;
22 @property (strong, nonatomic) IBOutlet UILabel *statusTextLable;
23 @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *littleWheel;
24 @property (strong, nonatomic) NSString *navTitle;
25 @property (strong, nonatomic) id delegate;
26 
27 - (IBAction)save:(id)sender;
28 
29 
30 @end
31 
32 
33 @protocol MyLordInfoViewDelegate <NSObject>
34 
36 
37 @end