Mac OS X で webview を使用して SWF ファイルをロードすると、「Missing Plug-in」と表示されます。
ここに私のコード:
NSString *htmlString = [NSString stringWithFormat:@"<html><body style='overflow:hide;'><object width=\"344\" height=\"298\"><param name=\"movie\" value=\"%@\"<embed type=\"application/x-shockwave-flash\" src=\"%@\" width=\"344\" height=\"298\"/></body></html>", flashLink, flashLink];
[[webView mainFrame]loadHTMLString:htmlString baseURL:nil];
WebPreferences *prefs = [vwWeb preferences];
[prefs setPlugInsEnabled:YES];
このswfをロードするにはどうすればよいですか?