i using dtattributedtextview show html data in nsstring format.is there way align text in view center.
i think can done & add code 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>"];
Comments
Post a Comment