1
A
回答
3
我不是很確定,但我認爲你必須通過frame.when來做動畫。當你設置標籤的座標放置變量像x,y而不是參數1和2的值,並把這個在一個動畫計時器中改變x和y的值。
類似的代碼,它是圖像可以爲標籤做到這一點也: - 對於簡單的問題
// Build array of images, cycling through image names
for (int i = 0; i < IMAGE_COUNT; i++)
[imageArray addObject:[UIImage imageNamed:[NSString stringWithFormat:@"Frame_%d.jpg", i]]];
// Animated images - centered on screen
animatedImages = [[UIImageView alloc]
initWithFrame:CGRectMake(
(SCREEN_WIDTH/2) - (IMAGE_WIDTH/2),
(SCREEN_HEIGHT/2) - (IMAGE_HEIGHT/2) + STATUS_BAR_HEIGHT,
IMAGE_WIDTH, IMAGE_HEIGHT)];
animatedImages.animationImages = [NSArray arrayWithArray:imageArray];
// One cycle through all the images takes 1.5 seconds
animatedImages.animationDuration = 1.0;
// Repeat forever
animatedImages.animationRepeatCount = -1;
// Add subview and make window visible
[window addSubview:animatedImages];
[window makeKeyAndVisible];
// Start it up
animatedImages.startAnimating;
// Wait 5 seconds, then stop animation
[self performSelector:@selector(stopAnimation) withObject:nil afterDelay:1000];
我希望它可以幫助你.. :)
相關問題
- 1. Xamarin.Forms Marquee iOS框架
- 2. 如何製作UILabel wordwrap
- 3. 如何限制UILabel文本長度 - IOS
- 4. 如何在UILabel上製作倒影?
- 5. IOS - 如何在UITableViewCell中移動UILabel?
- 6. 如何在iOS中掩蓋UILabel - Objective-C
- 7. ios:如何在uilabel中設置urllink?
- 8. 如何在html中使用Marquee?
- 9. 如何製作3D效果類似於Android網站的Marquee?
- 10. 如何在swift中限制UILabel字符?
- 11. ios在UItableView中交換UILabel
- 12. 如何角度ios中的uilabel
- 13. 如何在iOS中製作界面
- 14. 如何在ios中製作carousal動畫?
- 15. 如何在UILabel縮小字體大小中製作文本
- 16. 如何在swift中從底部到頂部製作UIlabel
- 17. 如何在自定義單元格中使用autoresizingMask製作UILabel?
- 18. 如何在UITableView中獲取UILabel動作?
- 19. UILabel AutoShrink屬性不工作在ios 7
- 20. iOS中的UIStepper UILabel
- 21. 如何在UIView子視圖中插入UILabel在iOS中
- 22. 如何在iOS中繼承工作sdk
- 23. 如何在iOS中的UITextView中創建UILabel
- 24. 如何製作按鈕,iOS
- 25. 如何製作iOS FBSDKProfilePictureView?
- 26. 如何在UILabel上繪製邊框?
- 27. 在iOS中刪除UILabel中的支架
- 28. iOS UILabel高度
- 29. iOS IBOutlet UILabel Duplicate
- 30. IOS UILabel sizeToFit
+1,這是-1所以現在它變成零。 :d – mAc