2013-07-15 6 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>"]; 
Смежные вопросы