2013-07-15 4 views

답변

0

나는 IT-하는 코드를 추가하려면이 & 같이 할 수 있다고 생각

NSMutableString *html = [[NSMutableString alloc] initWithCapacity:1]; 
     [html appendString:@"<html><head>"]; 
     [html appendString:@"<style type=\"text/css\">"]; 
     [html appendString:@"body {"]; 
    [html appendString:@"<center>"]; 
     [html appendString:@"background-color: transparent;"]; 
     [html appendString:@"color: white;"]; 
     [html appendString:@"}"]; 
    [html appendString:@"<center>"]; 
     [html appendString:@"</style>"]; 
[html appendString:@"</head>"]; 
     [html appendString:@"</body></html>"]; 
관련 문제