代码笔记】iOS-MBProgressHUD+MJ_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 代码笔记】iOS-MBProgressHUD+MJ

代码笔记】iOS-MBProgressHUD+MJ

 2017/7/31 11:38:52  弦外雨  程序员俱乐部  我要评论(0)
  • 摘要:一,效果图。二,工程图。三,代码。ViewController.m#import"ViewController.h"#import"MBProgressHUD+MJ.h"@interfaceViewController()@end@implementationViewController-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview,typicallyfromanib.}-(void
  • 标签:笔记 iOS 代码 SSH

一,效果图。

二,工程图。

三,代码。

ViewController.m

class="cnblogs_code_copy" style="font-size: 18px">复制代码
#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
发表评论
用户名: 匿名