興味深いのですが、「テレビのニュース ライン」のようにテキストを右から左に移動するにはどうすればよいでしょうか。
UILabel でテキストを右から左 (またはその他) に移動できますが、このアニメーションの移動は 1 回だけでなく、無限ループにする必要があります。
質問する
2759 次
3 に答える
5
ここにいくつかあります:
- https://github.com/caydenliew/CLTickerView
- https://github.com/malcommac/DMScrollingTicker
- https://github.com/MugunthKumar/MKTickerViewDemo
- https://github.com/jeffhodnett/JHTickerView
- https://github.com/cbess/AutoScrollLabel
Cocoa Controlsにはおそらくもっとあるでしょう。
于 2013-03-28T14:27:32.083 に答える
1
次のようにしたらどうですか:
-(void) animate {
label.center = CGPointMake(self.view.bounds.size.width + label.bounds.size.width/2, label.center.y);
[UIView animateWithDuration:20 delay:0 options:(UIViewAnimationOptionCurveLinear | UIViewAnimationOptionRepeat) animations:^{
label.center = CGPointMake(0 - label.bounds.size.width/2, label.center.y);
} completion:nil];
}
于 2013-03-28T14:27:35.130 に答える
0
// CrawlView.h
#import <UIKit/UIKit.h>
@interface CrawlView : UIScrollView
@property (assign, nonatomic) NSTimeInterval period;
@property (strong, nonatomic) NSMutableArray *messages;
- (void)go;
@end
// CrawlView.m
#define kWORD_SPACE 16.0f
#import "CrawlView.h"
@interface CrawlView ()
@property (assign, nonatomic) CGFloat messagesWidth;
@end
@implementation CrawlView
- (void)buildSubviews {
for (UIView *subview in [self subviews]) {
if ([subview isKindOfClass:[UILabel self]]) {
[subview removeFromSuperview];
}
}
CGFloat xPos = kWORD_SPACE;
for (NSString *message in self.messages) {
UILabel *label = [[UILabel alloc] initWithFrame:CGRectZero];
label.text = message;
CGSize size = [message sizeWithFont:label.font];
CGFloat width = size.width + kWORD_SPACE;
label.frame = CGRectMake(xPos, 0.0, width, self.frame.size.height);
[self addSubview:label];
xPos += width;
}
self.messagesWidth = xPos;
self.contentSize = CGSizeMake(xPos, self.frame.size.height);
self.contentOffset = CGPointMake(-self.frame.size.width, 0.0);
}
- (void)go {
[self buildSubviews];
if (!self.period) self.period = self.messagesWidth / 100;
[UIView animateWithDuration:self.period
delay:0.0
options:UIViewAnimationOptionCurveLinear |UIViewAnimationOptionRepeat
animations:^{
self.contentOffset = CGPointMake(self.messagesWidth, 0.0);
} completion:^(BOOL finished){
[self buildSubviews];}];
}
@end
于 2013-03-28T14:42:32.923 に答える