一,效果圖。 二,工程圖。 三,代碼。 ViewController.m #import "ViewController.h" #import "MBProgressHUD+MJ.h" @interface ViewController () @end @implementation ViewCon ...
一,效果圖。
二,工程圖。
三,代碼。
ViewController.m
#import "ViewController.h"
#import "MBProgressHUD+MJ.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[MBProgressHUD showMessage:@"正在登錄" toView:self.view];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end