Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
DZXCarouselView
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lufei
DZXCarouselView
Commits
d85a8446
Commit
d85a8446
authored
Feb 24, 2021
by
lufei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feature:
1.添加pageWillShow回调 2.添加pageShow回调 3.支持外部修改frame,同时调整子view frame 3.优化代码逻辑
parent
21af5c1c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
121 additions
and
36 deletions
+121
-36
DZXCarouselView.podspec
DZXCarouselView.podspec
+1
-1
DZXCarouselView/Classes/DZXCarouselView.h
DZXCarouselView/Classes/DZXCarouselView.h
+12
-1
DZXCarouselView/Classes/DZXCarouselView.m
DZXCarouselView/Classes/DZXCarouselView.m
+108
-34
No files found.
DZXCarouselView.podspec
View file @
d85a8446
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
Pod
::
Spec
.
new
do
|
s
|
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'DZXCarouselView'
s
.
name
=
'DZXCarouselView'
s
.
version
=
'0.0.
1
'
s
.
version
=
'0.0.
2
'
s
.
summary
=
'轮播组件'
s
.
summary
=
'轮播组件'
# This description is used to generate tags and improve search results.
# This description is used to generate tags and improve search results.
...
...
DZXCarouselView/Classes/DZXCarouselView.h
View file @
d85a8446
...
@@ -55,6 +55,8 @@ typedef NS_ENUM(NSUInteger, DZXCarouselPageControlTheme) {
...
@@ -55,6 +55,8 @@ typedef NS_ENUM(NSUInteger, DZXCarouselPageControlTheme) {
@class
DZXCarouselConfig
;
@class
DZXCarouselConfig
;
typedef
void
(
^
DZXCarouselConfigBlock
)(
DZXCarouselConfig
*
carouselConfig
);
typedef
void
(
^
DZXCarouselConfigBlock
)(
DZXCarouselConfig
*
carouselConfig
);
typedef
void
(
^
DZXCarouselTapBlock
)(
NSInteger
index
,
id
data
);
typedef
void
(
^
DZXCarouselTapBlock
)(
NSInteger
index
,
id
data
);
typedef
void
(
^
DZXCarouselPageShowBlock
)(
NSInteger
index
,
id
data
);
typedef
void
(
^
DZXCarouselPageWillShowBlock
)(
NSInteger
index
,
id
data
);
@interface
DZXCarouselConfig
:
NSObject
@interface
DZXCarouselConfig
:
NSObject
...
@@ -101,7 +103,13 @@ typedef void(^DZXCarouselTapBlock)(NSInteger index, id data);
...
@@ -101,7 +103,13 @@ typedef void(^DZXCarouselTapBlock)(NSInteger index, id data);
/// @param frame frame
/// @param frame frame
/// @param configBlock 配置回调
/// @param configBlock 配置回调
/// @param tapBlock 点击回调
/// @param tapBlock 点击回调
-
(
instancetype
)
initWithFrame
:(
CGRect
)
frame
configBlock
:(
DZXCarouselConfigBlock
)
configBlock
tapBlock
:(
DZXCarouselTapBlock
)
tapBlock
;
/// @param pageShowBlock 页面将展示回调
/// @param pageShowBlock 页面展示回调
-
(
instancetype
)
initWithFrame
:(
CGRect
)
frame
configBlock
:(
DZXCarouselConfigBlock
)
configBlock
tapBlock
:(
DZXCarouselTapBlock
)
tapBlock
pageWillShowBlock
:(
DZXCarouselPageWillShowBlock
)
pageWillShowBlock
pageShowBlock
:(
DZXCarouselPageShowBlock
)
pageShowBlock
;
/// 开始定时器
/// 开始定时器
-
(
void
)
timerStart
;
-
(
void
)
timerStart
;
...
@@ -109,5 +117,8 @@ typedef void(^DZXCarouselTapBlock)(NSInteger index, id data);
...
@@ -109,5 +117,8 @@ typedef void(^DZXCarouselTapBlock)(NSInteger index, id data);
/// 结束定时器
/// 结束定时器
-
(
void
)
timerStop
;
-
(
void
)
timerStop
;
/// 更新当前索引
-
(
void
)
updateCurrentIndex
:(
NSInteger
)
currentIndex
;
@end
@end
DZXCarouselView/Classes/DZXCarouselView.m
View file @
d85a8446
...
@@ -75,12 +75,18 @@
...
@@ -75,12 +75,18 @@
@property
(
nonatomic
,
copy
)
DZXCarouselConfigBlock
configBlock
;
@property
(
nonatomic
,
copy
)
DZXCarouselConfigBlock
configBlock
;
@property
(
nonatomic
,
copy
)
DZXCarouselTapBlock
tapBlock
;
@property
(
nonatomic
,
copy
)
DZXCarouselTapBlock
tapBlock
;
@property
(
nonatomic
,
copy
)
DZXCarouselPageWillShowBlock
pageWillShowBlock
;
@property
(
nonatomic
,
copy
)
DZXCarouselPageShowBlock
pageShowBlock
;
@end
@end
@implementation
DZXCarouselView
@implementation
DZXCarouselView
#pragma mark - Initial Methods
#pragma mark - Initial Methods
-
(
instancetype
)
initWithFrame
:(
CGRect
)
frame
configBlock
:(
DZXCarouselConfigBlock
)
configBlock
tapBlock
:(
DZXCarouselTapBlock
)
tapBlock
{
-
(
instancetype
)
initWithFrame
:(
CGRect
)
frame
configBlock
:(
DZXCarouselConfigBlock
)
configBlock
tapBlock
:(
DZXCarouselTapBlock
)
tapBlock
pageWillShowBlock
:(
DZXCarouselPageWillShowBlock
)
pageWillShowBlock
pageShowBlock
:(
DZXCarouselPageShowBlock
)
pageShowBlock
{
if
(
self
=
[
super
initWithFrame
:
frame
])
{
if
(
self
=
[
super
initWithFrame
:
frame
])
{
DZXCarouselConfig
*
carouselConfig
=
DZXCarouselConfig
.
new
;
DZXCarouselConfig
*
carouselConfig
=
DZXCarouselConfig
.
new
;
...
@@ -88,9 +94,10 @@
...
@@ -88,9 +94,10 @@
if
(
configBlock
)
{
if
(
configBlock
)
{
configBlock
(
carouselConfig
);
configBlock
(
carouselConfig
);
}
}
if
(
tapBlock
)
{
self
.
tapBlock
=
tapBlock
;
self
.
tapBlock
=
tapBlock
;
}
self
.
pageWillShowBlock
=
pageWillShowBlock
;
self
.
pageShowBlock
=
pageShowBlock
;
NSAssert
(
!
[
carouselConfig
.
subViewClass
isEqualToString
:
@""
],
@"carouselConfig.subViewClass should not be nil"
);
NSAssert
(
!
[
carouselConfig
.
subViewClass
isEqualToString
:
@""
],
@"carouselConfig.subViewClass should not be nil"
);
NSAssert
(
!
[
carouselConfig
.
propertyName
isEqualToString
:
@""
],
@"carouselConfig.propertyName should not be nil"
);
NSAssert
(
!
[
carouselConfig
.
propertyName
isEqualToString
:
@""
],
@"carouselConfig.propertyName should not be nil"
);
if
(
_carouselConfig
.
showPageControl
)
{
if
(
_carouselConfig
.
showPageControl
)
{
...
@@ -107,22 +114,29 @@
...
@@ -107,22 +114,29 @@
_scrollView
.
showsHorizontalScrollIndicator
=
NO
;
_scrollView
.
showsHorizontalScrollIndicator
=
NO
;
_scrollView
.
backgroundColor
=
UIColor
.
clearColor
;
_scrollView
.
backgroundColor
=
UIColor
.
clearColor
;
[
self
addSubview
:
_scrollView
];
[
self
addSubview
:
_scrollView
];
if
(
carouselConfig
.
theme
==
DZXCarouselThemeVertical
)
{
_scrollView
.
contentOffset
=
CGPointMake
(
0
,
frame
.
size
.
height
);
_scrollView
.
contentSize
=
CGSizeMake
(
frame
.
size
.
width
,
frame
.
size
.
height
*
3
);
}
else
{
_scrollView
.
contentOffset
=
CGPointMake
(
frame
.
size
.
width
,
0
);
_scrollView
.
contentSize
=
CGSizeMake
(
frame
.
size
.
width
*
3
,
frame
.
size
.
height
);
}
}
}
return
self
;
return
self
;
}
}
-
(
void
)
willMoveToSuperview
:(
UIView
*
)
newSuperview
{
-
(
void
)
willMoveToSuperview
:(
UIView
*
)
newSuperview
{
[
super
willMoveToSuperview
:
newSuperview
];
[
super
willMoveToSuperview
:
newSuperview
];
if
(
!
newSuperview
)
{
if
(
!
newSuperview
)
{
[
self
timerStop
];
[
self
timerStop
];
}
}
}
}
-
(
void
)
layoutSubviews
{
self
.
scrollView
.
frame
=
CGRectMake
(
0
,
0
,
self
.
frame
.
size
.
width
,
self
.
frame
.
size
.
height
);
[
self
updateSubViewFrames
];
if
(
_carouselConfig
.
theme
==
DZXCarouselThemeVertical
)
{
_scrollView
.
contentOffset
=
CGPointMake
(
0
,
self
.
frame
.
size
.
height
);
_scrollView
.
contentSize
=
CGSizeMake
(
self
.
frame
.
size
.
width
,
self
.
frame
.
size
.
height
*
3
);
}
else
{
_scrollView
.
contentOffset
=
CGPointMake
(
self
.
frame
.
size
.
width
,
0
);
_scrollView
.
contentSize
=
CGSizeMake
(
self
.
frame
.
size
.
width
*
3
,
self
.
frame
.
size
.
height
);
}
}
#pragma mark - Public Methods
#pragma mark - Public Methods
-
(
void
)
timerStop
{
-
(
void
)
timerStop
{
if
(
_timer
)
{
if
(
_timer
)
{
...
@@ -130,13 +144,29 @@
...
@@ -130,13 +144,29 @@
self
.
timer
=
nil
;
self
.
timer
=
nil
;
}
}
}
}
-
(
void
)
timerStart
{
-
(
void
)
timerStart
{
if
(
_dataArr
.
count
>
1
)
{
if
(
_
carouselConfig
.
autoScroll
&&
_
dataArr
.
count
>
1
)
{
[
self
timerStop
];
[
self
timerStop
];
self
.
timer
=
[
NSTimer
scheduledTimerWithTimeInterval
:
_carouselConfig
.
timeInterval
target
:
self
selector
:
@selector
(
timerAction
:
)
userInfo
:
nil
repeats
:
YES
];
self
.
timer
=
[
NSTimer
scheduledTimerWithTimeInterval
:
_carouselConfig
.
timeInterval
target
:
self
selector
:
@selector
(
timerAction
:
)
userInfo
:
nil
repeats
:
YES
];
[[
NSRunLoop
mainRunLoop
]
addTimer
:
_timer
forMode
:
NSDefaultRunLoopMode
];
[[
NSRunLoop
mainRunLoop
]
addTimer
:
_timer
forMode
:
NSDefaultRunLoopMode
];
}
}
}
}
-
(
void
)
updateCurrentIndex
:(
NSInteger
)
currentIndex
{
if
(
currentIndex
>=
_dataArr
.
count
||
currentIndex
<
0
)
{
return
;
}
[
self
timerStop
];
if
(
_pageWillShowBlock
)
{
_pageWillShowBlock
(
currentIndex
,
_dataArr
[
currentIndex
]);
}
self
.
currentIndex
=
currentIndex
;
[
self
updateViewData
];
[
self
timerStart
];
}
#pragma mark - Override Methods
#pragma mark - Override Methods
#pragma mark - Privater Methods
#pragma mark - Privater Methods
...
@@ -144,16 +174,18 @@
...
@@ -144,16 +174,18 @@
if
(
_lastV
)
return
;
if
(
_lastV
)
return
;
Class
className
=
NSClassFromString
(
_carouselConfig
.
subViewClass
);
Class
className
=
NSClassFromString
(
_carouselConfig
.
subViewClass
);
self
.
lastV
=
[[
className
alloc
]
initWithFrame
:
CGRectMake
(
_carouselConfig
.
padding
.
left
,
_carouselConfig
.
padding
.
top
,
self
.
frame
.
size
.
width
-
_carouselConfig
.
padding
.
left
-
_carouselConfig
.
padding
.
right
,
self
.
frame
.
size
.
height
-
_carouselConfig
.
padding
.
top
-
_carouselConfig
.
padding
.
bottom
)];
self
.
lastV
=
[[
className
alloc
]
init
];
[
_scrollView
addSubview
:
_lastV
];
if
(
_carouselConfig
.
theme
==
DZXCarouselThemeVertical
)
{
if
(
_carouselConfig
.
theme
==
DZXCarouselThemeVertical
)
{
self
.
currentV
=
[[
className
alloc
]
init
WithFrame
:
CGRectMake
(
_carouselConfig
.
padding
.
left
,
self
.
frame
.
size
.
height
+
_carouselConfig
.
padding
.
top
,
self
.
frame
.
size
.
width
-
_carouselConfig
.
padding
.
left
-
_carouselConfig
.
padding
.
right
,
self
.
frame
.
size
.
height
-
_carouselConfig
.
padding
.
top
-
_carouselConfig
.
padding
.
bottom
)
];
self
.
currentV
=
[[
className
alloc
]
init
];
self
.
nextV
=
[[
className
alloc
]
init
WithFrame
:
CGRectMake
(
_carouselConfig
.
padding
.
left
,
self
.
frame
.
size
.
height
*
2
+
_carouselConfig
.
padding
.
top
,
self
.
frame
.
size
.
width
-
_carouselConfig
.
padding
.
left
-
_carouselConfig
.
padding
.
right
,
self
.
frame
.
size
.
height
-
_carouselConfig
.
padding
.
top
-
_carouselConfig
.
padding
.
bottom
)
];
self
.
nextV
=
[[
className
alloc
]
init
];
}
else
{
}
else
{
self
.
currentV
=
[[
className
alloc
]
init
WithFrame
:
CGRectMake
(
self
.
frame
.
size
.
width
+
_carouselConfig
.
padding
.
left
,
_carouselConfig
.
padding
.
top
,
self
.
frame
.
size
.
width
-
_carouselConfig
.
padding
.
left
-
_carouselConfig
.
padding
.
right
,
self
.
frame
.
size
.
height
-
_carouselConfig
.
padding
.
top
-
_carouselConfig
.
padding
.
bottom
)
];
self
.
currentV
=
[[
className
alloc
]
init
];
self
.
nextV
=
[[
className
alloc
]
init
WithFrame
:
CGRectMake
(
self
.
frame
.
size
.
width
*
2
+
_carouselConfig
.
padding
.
left
,
_carouselConfig
.
padding
.
top
,
self
.
frame
.
size
.
width
-
_carouselConfig
.
padding
.
left
-
_carouselConfig
.
padding
.
right
,
self
.
frame
.
size
.
height
-
_carouselConfig
.
padding
.
top
-
_carouselConfig
.
padding
.
bottom
)
];
self
.
nextV
=
[[
className
alloc
]
init
];
}
}
[
self
updateSubViewFrames
];
[
_scrollView
addSubview
:
_lastV
];
[
_scrollView
addSubview
:
_currentV
];
[
_scrollView
addSubview
:
_currentV
];
UITapGestureRecognizer
*
tapGes
=
[
UITapGestureRecognizer
.
alloc
initWithTarget
:
self
action
:
@selector
(
tapCurrentView
)];
UITapGestureRecognizer
*
tapGes
=
[
UITapGestureRecognizer
.
alloc
initWithTarget
:
self
action
:
@selector
(
tapCurrentView
)];
...
@@ -195,9 +227,14 @@
...
@@ -195,9 +227,14 @@
}
}
}
}
-
(
void
)
tapCurrentView
{
-
(
void
)
updateSubViewFrames
{
if
(
self
.
tapBlock
)
{
_lastV
.
frame
=
CGRectMake
(
_carouselConfig
.
padding
.
left
,
_carouselConfig
.
padding
.
top
,
self
.
frame
.
size
.
width
-
_carouselConfig
.
padding
.
left
-
_carouselConfig
.
padding
.
right
,
self
.
frame
.
size
.
height
-
_carouselConfig
.
padding
.
top
-
_carouselConfig
.
padding
.
bottom
);
self
.
tapBlock
(
self
.
currentIndex
,
self
.
dataArr
[
self
.
currentIndex
]);
if
(
_carouselConfig
.
theme
==
DZXCarouselThemeVertical
)
{
_currentV
.
frame
=
CGRectMake
(
_carouselConfig
.
padding
.
left
,
self
.
frame
.
size
.
height
+
_carouselConfig
.
padding
.
top
,
self
.
frame
.
size
.
width
-
_carouselConfig
.
padding
.
left
-
_carouselConfig
.
padding
.
right
,
self
.
frame
.
size
.
height
-
_carouselConfig
.
padding
.
top
-
_carouselConfig
.
padding
.
bottom
);
_nextV
.
frame
=
CGRectMake
(
_carouselConfig
.
padding
.
left
,
self
.
frame
.
size
.
height
*
2
+
_carouselConfig
.
padding
.
top
,
self
.
frame
.
size
.
width
-
_carouselConfig
.
padding
.
left
-
_carouselConfig
.
padding
.
right
,
self
.
frame
.
size
.
height
-
_carouselConfig
.
padding
.
top
-
_carouselConfig
.
padding
.
bottom
);
}
else
{
_currentV
.
frame
=
CGRectMake
(
self
.
frame
.
size
.
width
+
_carouselConfig
.
padding
.
left
,
_carouselConfig
.
padding
.
top
,
self
.
frame
.
size
.
width
-
_carouselConfig
.
padding
.
left
-
_carouselConfig
.
padding
.
right
,
self
.
frame
.
size
.
height
-
_carouselConfig
.
padding
.
top
-
_carouselConfig
.
padding
.
bottom
);
_nextV
.
frame
=
CGRectMake
(
self
.
frame
.
size
.
width
*
2
+
_carouselConfig
.
padding
.
left
,
_carouselConfig
.
padding
.
top
,
self
.
frame
.
size
.
width
-
_carouselConfig
.
padding
.
left
-
_carouselConfig
.
padding
.
right
,
self
.
frame
.
size
.
height
-
_carouselConfig
.
padding
.
top
-
_carouselConfig
.
padding
.
bottom
);
}
}
}
}
...
@@ -210,18 +247,24 @@
...
@@ -210,18 +247,24 @@
}
}
_isLast
=
NO
;
//重新置回NO,向后滚
_isLast
=
NO
;
//重新置回NO,向后滚
[
self
updateViewData
];
}
}
//更新内容
-
(
void
)
updateViewData
{
[
self
addProperty
:
_dataArr
[(
_currentIndex
-
1
)
%
_dataArr
.
count
]
toObj
:
_lastV
];
[
self
addProperty
:
_dataArr
[(
_currentIndex
-
1
)
%
_dataArr
.
count
]
toObj
:
_lastV
];
[
self
addProperty
:
_dataArr
[
_currentIndex
]
toObj
:
_currentV
];
[
self
addProperty
:
_dataArr
[
_currentIndex
]
toObj
:
_currentV
];
[
self
addProperty
:
_dataArr
[(
_currentIndex
+
1
)
%
_dataArr
.
count
]
toObj
:
_nextV
];
[
self
addProperty
:
_dataArr
[(
_currentIndex
+
1
)
%
_dataArr
.
count
]
toObj
:
_nextV
];
if
(
_carouselConfig
.
theme
==
DZXCarouselThemeVertical
)
{
if
(
_carouselConfig
.
theme
==
DZXCarouselThemeVertical
)
{
[
_scrollView
setContentOffset
:
CGPointMake
(
0
,
self
.
frame
.
size
.
height
)];
[
_scrollView
setContentOffset
:
CGPointMake
(
0
,
self
.
frame
.
size
.
height
)];
}
else
{
}
else
{
[
_scrollView
setContentOffset
:
CGPointMake
(
self
.
frame
.
size
.
width
,
0
)];
[
_scrollView
setContentOffset
:
CGPointMake
(
self
.
frame
.
size
.
width
,
0
)];
}
}
_pageControl
.
currentPage
=
_currentIndex
;
_pageControl
.
currentPage
=
_currentIndex
;
}
}
[
self
pageShow
];
}
-
(
void
)
addProperty
:(
id
)
data
toObj
:(
id
)
obj
{
-
(
void
)
addProperty
:(
id
)
data
toObj
:(
id
)
obj
{
SEL
sel
=
NSSelectorFromString
(
_carouselConfig
.
propertyName
);
SEL
sel
=
NSSelectorFromString
(
_carouselConfig
.
propertyName
);
if
([
obj
respondsToSelector
:
sel
])
{
if
([
obj
respondsToSelector
:
sel
])
{
...
@@ -266,6 +309,8 @@
...
@@ -266,6 +309,8 @@
#pragma mark - Target Methods
#pragma mark - Target Methods
-
(
void
)
timerAction
:(
BOOL
)
isLast
{
-
(
void
)
timerAction
:(
BOOL
)
isLast
{
[
self
pageWillShow
:
isLast
];
__weak
__typeof
(
self
)
weakSelf
=
self
;
__weak
__typeof
(
self
)
weakSelf
=
self
;
dispatch_async
(
dispatch_get_main_queue
(),
^
{
dispatch_async
(
dispatch_get_main_queue
(),
^
{
__strong
__typeof
(
weakSelf
)
strongSelf
=
weakSelf
;
__strong
__typeof
(
weakSelf
)
strongSelf
=
weakSelf
;
...
@@ -286,6 +331,32 @@
...
@@ -286,6 +331,32 @@
//动画过后重置位置
//动画过后重置位置
[
NSTimer
scheduledTimerWithTimeInterval
:.
3
target
:
self
selector
:
@selector
(
scroll
)
userInfo
:
nil
repeats
:
NO
];
[
NSTimer
scheduledTimerWithTimeInterval
:.
3
target
:
self
selector
:
@selector
(
scroll
)
userInfo
:
nil
repeats
:
NO
];
}
}
#pragma mark - Action
//将要显示
-
(
void
)
pageWillShow
:(
BOOL
)
isLast
{
NSInteger
willShowIndex
;
if
(
_isLast
)
{
willShowIndex
=
(
_currentIndex
-
1
)
%
_dataArr
.
count
;
}
else
{
willShowIndex
=
(
_currentIndex
+
1
)
%
_dataArr
.
count
;
}
if
(
_pageWillShowBlock
)
{
_pageWillShowBlock
(
willShowIndex
,
_dataArr
[
willShowIndex
]);
}
}
//已显示
-
(
void
)
pageShow
{
if
(
_pageShowBlock
)
{
_pageShowBlock
(
_currentIndex
,
_dataArr
[
_currentIndex
]);
}
}
///点击
-
(
void
)
tapCurrentView
{
if
(
self
.
tapBlock
)
{
self
.
tapBlock
(
_currentIndex
,
self
.
dataArr
[
_currentIndex
]);
}
}
#pragma mark - Setter Getter Methods
#pragma mark - Setter Getter Methods
-
(
void
)
setDataArr
:(
NSArray
*
)
dataArr
{
-
(
void
)
setDataArr
:(
NSArray
*
)
dataArr
{
_dataArr
=
dataArr
;
_dataArr
=
dataArr
;
...
@@ -311,12 +382,15 @@
...
@@ -311,12 +382,15 @@
[
self
addProperty
:
_dataArr
[
0
]
toObj
:
_currentV
];
[
self
addProperty
:
_dataArr
[
0
]
toObj
:
_currentV
];
if
(
dataArr
.
count
>
1
)
{
if
(
dataArr
.
count
>
1
)
{
[
self
addProperty
:
_dataArr
[
1
]
toObj
:
_nextV
];
[
self
addProperty
:
_dataArr
[
1
]
toObj
:
_nextV
];
if
(
_carouselConfig
.
autoScroll
)
{
[
self
timerStart
];
[
self
timerStart
];
}
}
else
{
}
else
{
[
self
addProperty
:
_dataArr
[
0
]
toObj
:
_nextV
];
[
self
addProperty
:
_dataArr
[
0
]
toObj
:
_nextV
];
}
}
//页面展示block(第一次进来)
_pageWillShowBlock
(
0
,
_dataArr
[
0
]);
_pageShowBlock
(
0
,
_dataArr
[
0
]);
}
}
@end
@end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment