iOS実現循環スクロール掲示板
本論文の例では、iOSの循環スクロールを実現する掲示板の具体的なコードを共有します。参考にしてください。具体的な内容は以下の通りです。
UID Viewに引き継がれるクラスをカプセル化しました。
公告内容用のlabelはクリック効果がありません。必要であれば。buttonに変えて、ジェスチャーを追加してもいいです。
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。
UID Viewに引き継がれるクラスをカプセル化しました。
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface XtayNoticeScrollView : UIView
- (instancetype)initWithFrame:(CGRect)frame titleArray:(NSArray<NSString *> *)titleArray;
- (void)openTimer;
- (void)closeTimer;
@end
NS_ASSUME_NONNULL_END
#define ROW_H self.bounds.size.height
#import "XtayNoticeScrollView.h"
@interface XtayNoticeScrollView ()
/// scrollView
@property (nonatomic, strong) UIScrollView *bgScrollView;
/// titleArr
@property (nonatomic, copy) NSArray *titleArr;
/// timer
@property (nonatomic, strong) NSTimer *scrollTimer;
@end
@implementation XtayNoticeScrollView
- (instancetype)initWithFrame:(CGRect)frame titleArray:(NSArray<NSString *> *)titleArray {
self = [super initWithFrame:frame];
if (self) {
self.titleArr = titleArray;
[self addSubview:self.bgScrollView];
[self createBaseView];
[self openTimer];
}
return self;
}
// MARK: -
- (void)openTimer {
if (!_scrollTimer) {
_scrollTimer = [NSTimer scheduledTimerWithTimeInterval:3 target:self selector:@selector(timerMoved) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:_scrollTimer forMode:NSRunLoopCommonModes];
}
}
// MARK: -
- (void)closeTimer {
[_scrollTimer invalidate];
_scrollTimer = nil;
}
- (UIScrollView *)bgScrollView {
if (!_bgScrollView) {
_bgScrollView = [[UIScrollView alloc] initWithFrame:self.bounds];
_bgScrollView.scrollEnabled = NO;
_bgScrollView.showsVerticalScrollIndicator = NO;
_bgScrollView.showsHorizontalScrollIndicator = NO;
_bgScrollView.backgroundColor = UIColor.whiteColor;
}
return _bgScrollView;
}
// MARK: -
- (void)createBaseView {
//
if (self.titleArr.count == 0) {
return;
}
// ,
NSMutableArray *dataMArray = [NSMutableArray arrayWithCapacity:0];
[dataMArray addObjectsFromArray:_titleArr];
[dataMArray addObject:_titleArr.firstObject];
for (int i = 0; i<dataMArray.count; i++) {
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, ROW_H*(i%dataMArray.count), self.bgScrollView.bounds.size.width, ROW_H)];
label.text = dataMArray[i];
label.font = [UIFont systemFontOfSize:15];
label.textColor = [UIColor blackColor];
label.numberOfLines = 0;
[_bgScrollView addSubview:label];
}
_bgScrollView.contentSize = CGSizeMake(0, ROW_H*dataMArray.count);
}
// MARK: -
- (void)timerMoved {
CGFloat pageY = self.bgScrollView.contentOffset.y/ROW_H;
int pageIntY = pageY;
if (pageIntY >= self.titleArr.count) {
[self.bgScrollView setContentOffset:CGPointMake(0, 0) animated:NO];
} else {
[self.bgScrollView setContentOffset:CGPointMake(0, (pageIntY+1)*ROW_H) animated:YES];
}
}
VCコールコード:
XtayNoticeScrollView *notiView = [[XtayNoticeScrollView alloc] initWithFrame:CGRectMake(50, 100, self.view.frame.size.width-100, 50) titleArray:@[@" -11111111111111", @" -2222222", @" -33333333"]];
[self.view addSubview:notiView];
実行後の効果動画:公告内容用のlabelはクリック効果がありません。必要であれば。buttonに変えて、ジェスチャーを追加してもいいです。
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。