-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathViewController.m
57 lines (41 loc) · 1.21 KB
/
ViewController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//
// ViewController.m
// SlideTabBar
//
// Created by Mr.LuDashi on 15/6/25.
// Copyright (c) 2015年 李泽鲁. All rights reserved.
//
#import "ViewController.h"
#import "SlideTabBarView.h"
@interface ViewController ()
@property (strong, nonatomic) SlideTabBarView *slideTabBarView;
@property (strong, nonatomic) IBOutlet UIView *superView;
@property (assign) NSInteger tabCount;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
_tabCount = 6;
[self initSlideWithCount:_tabCount];
}
- (IBAction)jian:(id)sender {
[_slideTabBarView removeFromSuperview];
if (_tabCount > 1) {
[self initSlideWithCount:--_tabCount];
}
}
- (IBAction)add:(id)sender {
[_slideTabBarView removeFromSuperview];
[self initSlideWithCount:++_tabCount];
}
-(void) initSlideWithCount: (NSInteger) count{
CGRect screenBound = [[UIScreen mainScreen] bounds];
screenBound.origin.y = 60;
_slideTabBarView = [[SlideTabBarView alloc] initWithFrame:screenBound WithCount:count];
[self.view addSubview:_slideTabBarView];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end