1
A
回答
5
iPhone不提供UILabels這樣的功能,你需要爲動畫的標籤。
請參考以下鏈接 https://github.com/cbpowell/MarqueeLabel
只需拖放MarqueeLabel.h & MarqueeLabel.m文件,並創建標籤如下:
MarqueeLabel *rightLeftLabel = [[MarqueeLabel alloc] initWithFrame:CGRectMake(10, 260, self.view.frame.size.width-20, 20) rate:50.0f andFadeLength:10.0f];
rightLeftLabel.numberOfLines = 1;
rightLeftLabel.shadowOffset = CGSizeMake(0.0, -1.0);
rightLeftLabel.textAlignment = NSTextAlignmentRight;
rightLeftLabel.textColor = [UIColor colorWithRed:0.234 green:0.234 blue:0.234 alpha:1.000];
rightLeftLabel.backgroundColor = [UIColor clearColor];
rightLeftLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:17.000];
rightLeftLabel.marqueeType = MLRightLeft;
rightLeftLabel.text = @"This text is not as long, but still long enough to scroll, and scrolls the same speed but to the right first!";
[self.view addSubview:rightLeftLabel];
他們創造UIView子類和動畫UILabels是子視圖UIView的。
希望這有助於你:)
1
UILabel *toastLabel = [[UILabel alloc]init*];
toastLabel.text = @"Our toast text";
[toastLabel setHidden:TRUE];
[toastLabel setAlpha:1.0];
CGPoint location;
location.x = 0;
location.y = 400;
toastLabel.center = location;
location.x = 500;
location.y = 400;
[toastLabel setHidden:FALSE];
[UIView animateWithDuration:8 animations:^{
toastLabel.alpha = 0.0;
toastLabel.center = location;
}];
相關問題
- 1. 將頁面左側的標籤頁移動到右側
- 2. 動畫移動到左側和右側?
- 3. 從右側滑動div到左側<
- 4. 滑動面板從左側到右側
- 5. 將電流標籤滑到左側,從右側滑入下一個標籤
- 6. 如何讓圖像從左側0,0位置向右側移動到右側?
- 7. 如何檢測鼠標是否移動到左側或右側?
- 8. Android AlertDialog將PositiveButton移動到右側並將NegativeButton移動到左側
- 9. 將右側的R圖移動到側
- 10. 將UIBarButton移動到UINavigationBar左側的右側 - Swift 2
- 11. 動畫從右側和左側查看
- 12. 將CSS圖標移動到右側
- 13. UIScrollView拖動到右側或左側
- 14. 如何知道我是否將鼠標移動到左側或右側
- 15. 將UIImageView從左側移動到中央
- 16. 是否可以將UIScrollView指示器從右側移動到左側?
- 17. 從畫布左側向右側直線移動圓圈
- 18. ActionScript MovieClip移動到左側,但不是右側
- 19. 如何在iOs中顯示從右側到左側的視圖?
- 20. 將徽標移至右側
- 21. 左側和右側jQuery動畫運動
- 22. 如何使標題左側與右側和側按鈕在jquery移動
- 23. 如何將相同的活動滑動到左側和右側
- 24. Javascript動作將滑塊滑動到左側或右側
- 25. 如何將元素從初始狀態移動到右側,然後從初始狀態移動到左側?
- 26. 左側浮標和右側內容
- 27. 將複選框移動到標籤右側
- 28. NetBeans將標籤導航移動到右側
- 29. 將Chart.js水平條形圖標籤移動到右側
- 30. 溢出滾動框移動div的左側和右側