1

iOS webbView でイメージリンクを表示する際に問題が発生しています。何が起こっているのかというと、xib ファイルに webView を配置してアウトレットに接続しましたが、まだ画像を表示できません..

ViewController.m のコード

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController


- (void)viewDidLoad {
NSString *urlLink = @"http://www.novasoftware.se/ImgGen/schedulegenerator.aspx?format=png&schoolid=90645/sv-se&type=1&id={FDCE3A18-B5F6-45F4-B9B2-EA9171290F71}&period=&week=41&mode=0&printer=0&colors=32&head=0&clock=0&foot=0&day=0&width=844&height=629&maxwidth=844&maxheight=629";

//Create a URL object.
NSURL *url = [NSURL URLWithString:urlLink];

//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];

//Load the request in the UIWebView.
[self.webView loadRequest:requestObj];
}



- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}



@end

誰かが問題が何であるかを理解できれば、私は感謝しています!

よろしくオリバー

4

1 に答える 1

0
http://www.novasoftware.se/ImgGen/schedulegenerator.aspx?format=png&schoolid=90645/sv-se&type=1&id={FDCE3A18-B5F6-45F4-B9B2-EA9171290F71}&period=&week=41&mode=0&printer=0&colors=32&head=0&clock=0&foot=0&day=0&width=844&height=629&maxwidth=844&maxheight=629

これは画像への直接リンクではありません。それはおそらくあなたの問題です。このような通常の画像リンクを使用してみてくださいhttps://www.google.com/images/srpr/logo3w.png。表示されるはずです。

于 2012-10-09T21:21:30.157 に答える