FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Coding-iOS/Coding_iOS/Views/TopicListView.m at master · JackCoderForLove/Coding-iOS · GitHub
JackCoderForLove
/
Coding-iOS
Public
forked from
coding/Coding-iOS
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Coding-iOS
/
Coding_iOS
/
Views
/
TopicListView.m
Copy path
More file actions
More file actions
Latest commit
History
History
History
180 lines (159 loc) · 5.88 KB
Breadcrumbs
Coding-iOS
/
Coding_iOS
/
Views
/
TopicListView.m
Copy path
File metadata and controls
180 lines (159 loc) · 5.88 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
//
//
TopicListView.m
//
Coding_iOS
//
//
Created by 周文敏 on 15/4/19.
//
Copyright (c) 2015年 Coding. All rights reserved.
//
#
import
"
TopicListView.h
"
#
import
"
TopicListButton.h
"
@interface
TopicListView
()
{
UIScrollView *_baseView;
UIButton *_baseBtn;
NSInteger
_count;
NSInteger
_index;
}
@property
(
nonatomic
,
copy
) TopicListViewBlock block;
@property
(
nonatomic
,
copy
) TopicListViewHideBlock hideBlock;
@end
@implementation
TopicListView
- (
id
)
initWithFrame
:
(CGRect)
frame
titles
:
(
NSArray
*)
titles
numbers
:
(
NSArray
*)
numbers
defaultIndex
:
(
NSInteger
)
index
selectedBlock
:
(TopicListViewBlock)
selectedHandle
hideBlock
:
(TopicListViewHideBlock)
hideHandle
{
self = [
super
initWithFrame:
frame];
if
(self) {
self.
backgroundColor
= [UIColor
colorWithRed:
0
green:
0
blue:
0
alpha:
0.4
];
self.
block
= selectedHandle;
self.
hideBlock
= hideHandle;
self.
clipsToBounds
=
YES
;
_baseBtn = [[UIButton
alloc
]
initWithFrame:
CGRectMake
(
0
,
0
,
kScreen_Width
,
self
.frame.size.height)];
_baseBtn.
backgroundColor
= [UIColor
clearColor
];
[_baseBtn
addTarget:
self
action:
@selector
(
baseBtnClick
)
forControlEvents:
UIControlEventTouchUpInside];
[
self
addSubview:
_baseBtn];
_index = index;
_count = titles.
count
;
CGFloat h = _count *
kMySegmentControl_Height
;
CGFloat
sH
= h;
if
(h +
kMySegmentControl_Height
> self.
frame
.
size
.
height
) {
sH
= self.
frame
.
size
.
height
-
kMySegmentControl_Height
;
}
_baseView = [[UIScrollView
alloc
]
initWithFrame:
CGRectMake
(
0
, -
sH
,
kScreen_Width
,
sH
)];
[
self
addSubview:
_baseView];
_baseView.
contentSize
=
CGSizeMake
(
kScreen_Width
, h);
_baseView.
bounces
=
FALSE
;
UIView *btnView = [[UIView
alloc
]
initWithFrame:
CGRectMake
(
0
,
0
,
kScreen_Width
, h)];
btnView.
backgroundColor
= [UIColor
whiteColor
];
[_baseView
addSubview:
btnView];
for
(
int
i=
0
; i<titles.
count
; i++) {
NSString
*title = titles[i];
TopicListButton *btn;
if
(numbers) {
btn = [TopicListButton
buttonWithTitle:
title
andNumber:
[numbers[i]
integerValue
]];
}
else
{
btn = [TopicListButton
buttonWithTitle:
title];
}
CGRect frame = btn.
frame
;
frame.
origin
.
y
= i *
kMySegmentControl_Height
;
btn.
frame
= frame;
btn.
tag
=
1000
+ i;
[btn
setIconHide:
(_index == i ?
FALSE
:
TRUE
)];
[btn
addTarget:
self
action:
@selector
(
btnClick:
)
forControlEvents:
UIControlEventTouchUpInside];
[btnView
addSubview:
btn];
}
}
return
self;
}
- (
void
)
changeWithTitles
:
(
NSArray
*)
titles
numbers
:
(
NSArray
*)
numbers
defaultIndex
:
(
NSInteger
)
index
selectedBlock
:
(TopicListViewBlock)
selectedHandle
hideBlock
:
(TopicListViewHideBlock)
hideHandle
{
self.
block
= selectedHandle;
self.
hideBlock
= hideHandle;
CGRect frame = _baseView.
frame
;
frame.
origin
.
y
= -frame.
size
.
height
;
[UIView
animateWithDuration:
0.2
delay:
0.0
options:
UIViewAnimationOptionCurveLinear
animations:
^{
_baseView.
frame
= frame;
}
completion:
^(
BOOL
finished) {
[_baseView
removeFromSuperview
];
_index = index;
_count = titles.
count
;
CGFloat h = _count *
kMySegmentControl_Height
;
CGFloat
sH
= h;
if
(h +
kMySegmentControl_Height
> self.
frame
.
size
.
height
) {
sH
= self.
frame
.
size
.
height
-
kMySegmentControl_Height
;
}
_baseView = [[UIScrollView
alloc
]
initWithFrame:
CGRectMake
(
0
, -
sH
,
kScreen_Width
,
sH
)];
[
self
addSubview:
_baseView];
_baseView.
contentSize
=
CGSizeMake
(
kScreen_Width
, h);
_baseView.
bounces
=
FALSE
;
UIView *btnView = [[UIView
alloc
]
initWithFrame:
CGRectMake
(
0
,
0
,
kScreen_Width
, h)];
btnView.
backgroundColor
= [UIColor
whiteColor
];
[_baseView
addSubview:
btnView];
for
(
int
i=
0
; i<titles.
count
; i++) {
NSString
*title = titles[i];
TopicListButton *btn;
if
(numbers) {
btn = [TopicListButton
buttonWithTitle:
title
andNumber:
[numbers[i]
integerValue
]];
}
else
{
btn = [TopicListButton
buttonWithTitle:
title];
}
CGRect frame = btn.
frame
;
frame.
origin
.
y
= i *
kMySegmentControl_Height
;
btn.
frame
= frame;
btn.
tag
=
1000
+ i;
[btn
setIconHide:
(_index == i ?
FALSE
:
TRUE
)];
[btn
addTarget:
self
action:
@selector
(
btnClick:
)
forControlEvents:
UIControlEventTouchUpInside];
[btnView
addSubview:
btn];
}
[
self
showBtnView
];
}];
}
- (
void
)
showBtnView
{
CGRect frame = _baseView.
frame
;
frame.
origin
.
y
=
0
;
[UIView
animateWithDuration:
0.3
animations:
^{
_baseView.
frame
= frame;
}
completion:
^(
BOOL
finished) {
}];
}
- (
void
)
hideBtnView
{
CGRect frame = _baseView.
frame
;
frame.
origin
.
y
= -frame.
size
.
height
;
[UIView
animateWithDuration:
0.3
delay:
0.0
options:
UIViewAnimationOptionCurveLinear
animations:
^{
_baseView.
frame
= frame;
}
completion:
^(
BOOL
finished) {
if
(self.
hideBlock
) {
self.
hideBlock
();
}
[UIView
animateWithDuration:
0.2
animations:
^{
self.
alpha
=
0
;
}
completion:
^(
BOOL
finished) {
[
self
removeFromSuperview
];
}];
}];
}
- (
void
)
baseBtnClick
{
[
self
hideBtnView
];
}
- (
void
)
btnClick
:
(TopicListButton *)
sender
{
for
(
int
i=
1000
; i<_count +
1000
; i++) {
TopicListButton *btn = (TopicListButton *)[_baseView
viewWithTag:
i];
[btn
setIconHide:
(sender.tag == i ?
FALSE
:
TRUE
)];
}
if
(_index!=sender.
tag
-
1000
&& self.
block
) {
self.
block
(sender.
tag
-
1000
);
}
[
self
hideBtnView
];
}
@end
Back
|
FazBrowse Home
|
New Git URL