その中にラベルとテキストがあります。デジタル情報板のように、テキストをラベルの幅全体に移動させたい。iOSでそれを行う方法は?私はそのコードを試しました(ここから入手しました:http://www.youtube.com/watch?v=EFoNEjPwTXM)が、うまくいきません:
.m ファイル内:
-(void)time: (NSTimer *) theTimer
{
currentSong.center = CGPointMake(currentSong.center.x - 3.5, currentSong.center.y);
if (currentSong.center.x < - (currentSong.bounds.size.width/2))
{
currentSong.center = CGPointMake (320 + (currentSong.bounds.size.width/2), currentSong.center.y);
}
}
でviewDidLoad
:
timer = [NSTimer timerWithTimeInterval:0.09 target:self selector:@selector(time:) userInfo:nil repeats:YES];
.h ファイル内:
IBOutlet UILabel *currentSong;
IBOutlet NSTimer *timer;
-(void)time: (NSTimer *) theTimer;
@end