2010-05-07 30 views

回答

11

剛貼上舊項目。我希望這可以幫助

NSString *css = [NSString stringWithFormat: 
        @"<html><head><style>body { background-color: transparent; text-align: %@; font-size: %ipx; color: white;} a { color: #172983; } </style></head><body>", 
        @"justify", 
        16]; 

    NSMutableString *desc = [NSMutableString stringWithFormat:@"%@%@<br><br>%@<br><br>%@%@", 
          css, 
          sampleText, 
          sampleText, 
          sampleText, 
          @"</body></html>"]; 

    UIWebView *webView = (UIWebView *)[self viewWithTag:WEB_VIEW_TAG]; 
    [webView loadHTMLString:desc baseURL:nil]; 
+0

謝謝。我明白了,但這足夠準確。 – Moshe 2010-06-17 17:43:54