How do I set textalignment property to right in uiwebview in IOS?

3.2k Views Asked by At

I am rendering data from the service in the uiwebview, but i need to show the content in the webview from right to left, how to do that i have tried the following thing, but it doesnot apply to the content.

Here is my code.

[webView loadHTMLString:[NSString stringWithFormat:
                         @"<div align='right'>%@<div>",configdata] baseURL:nil];

If any code changes is there please help me. thank you in advance.

2

There are 2 best solutions below

2
On BEST ANSWER

I dot the solution for my answer, this is the code.

[webView loadHTMLString:[NSString stringWithFormat:@"<div dir='rtl'>%@<div>",configdata] baseURL:nil];

Here use dir = 'rtl', it resolved my question.

0
On

You have to style your div. By applying the text-align attribute. Give it a try. Just as advice, if you have a bunch of such div elements I recommend you to not use inline-style.

[webView loadHTMLString:[NSString stringWithFormat:@"<div style='text-align:right'>%@<div>",configdata] baseURL:nil];