播放按钮中的图标

时间:2012-02-21 00:01:38

标签: youtube uibutton xcode4.2 mpmovieplayercontroller

如何在按钮中显示此播放箭头?如果您的网站包含嵌入的YouTube视频,则此箭头应该如此。

Image http://iPhoneIncubator.com/blog/wp-content/uploads/2009/03/youtubeembeddedvideo.png

1 个答案:

答案 0 :(得分:2)

如果您要直接从应用中播放YouTube内容,则会提供一些有关如何放置UIWebView以显示YouTube内容的信息。查看方法#2,演示如何创建此缩略图。

YouTube API Information

对于其他视频源,您可以使用

将按钮的背景颜色设置为视频的静止帧。
button.backgroundColor = [UIColor colorWithPatternImage: [UIImage imageNamed: @"videoStill.png"]];

然后将按钮的图像属性设置为具有透明度的播放按钮。

[button setImage:[UIImage imageNamed:@"playButton.png"] forState:UIControlStateNormal];