在這個UIWebView的子類中,我期待設置一個方法來創建嵌入式YouTube視頻。但是,無論我怎麼修改這個代碼(我發現大多數在線的),它總是讓我在該行警告:不兼容的指針類型
self = [[UIWebView alloc] initWithFrame:frame];
林不知道這是否是因爲Xcode的4.2或iOS 5或我正在使用自我的事實。有沒有錯嗎?如果是這樣,我該如何解決?
整個方法的代碼:
- (videosView *)initWithStringAsURL:(NSString *)urlString frame:(CGRect)frame;
{
if (self = [super init])
{
// Create webview with requested frame size
self = [[UIWebView alloc] initWithFrame:frame];
// HTML to embed YouTube video
NSString *youTubeVideoHTML = @"<html><head>\
<body style=\"margin:0\">\
<embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \
width=\"%0.0f\" height=\"%0.0f\"></embed>\
</body></html>";
// Populate HTML with the URL and requested frame size
NSString *html = [NSString stringWithFormat:youTubeVideoHTML, urlString, frame.size.width, frame.size.height];
// Load the html into the webview
[self loadHTMLString:html baseURL:nil];
[self setUserInteractionEnabled:YES];
}
return self;
}
我希望大家看完我的答案了。它解決了你的警告的性質。 「你正在接受有關不兼容的指針類型的投訴,因爲......」Kevin的答案提供了對你犯的另一個錯誤的信息(在init方法內部分配)並解決了你的問題。 – 2011-12-15 05:22:11