添加demo方法

This commit is contained in:
wushenghua
2016-01-21 14:54:27 +08:00
parent cbd6b182a1
commit f56f9c1e8b
@@ -7,19 +7,23 @@
//
#import "ViewController.h"
#import <ASH_Manager/HobbyTagView.h>
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
HobbyTagView* hobbyTagView = [[HobbyTagView alloc] initWithFrame:CGRectMake(0, 0, [[UIScreen mainScreen] bounds].size.width, [[UIScreen mainScreen] bounds].size.height - 64) withData:nil];
[self.view addSubview:hobbyTagView];
}
- (void)didReceiveMemoryWarning {
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}