Changing size of UIWebView text - objective-c

I'm trying to change text size in UIWebView, but I don't know how. Help me please.

Take a look at this question; it provides a JavaScript based solution.

Related

how to add text on image and move that text to different points(objective-c)

I want to add text on image, not on a specific point but want to move it anywhere on the image. just like many photo editing apps. anybody know how to do this?
You can set label on UIImageView and then you can write whatever you want to write.
https://github.com/kcandr/IQLabelView
This one is the best approach and it worked fine for me by making the required changes to the code.

Image picker on slider

I want to create image slider [Same like an bellow image].I got some example but those are not fulfilling my requirement. Please help me to solve this issue.
UICollectionView is the best choice for your task. See example here.

How to give a fixed size to image in magnific-popup pluggin

I am using magnific-popup pluggin to display some image links in my application. It displays all the images with their actual size. However, I want to display those images with my custom width and height.. How can I do that.. Is there option to give size of content in the magnific-popup during initialization..? Do any one have an idea..
Thanks in advance.
I found the answer. It can be done by changing the respective class's css properties manually. But, that is also fixed for all images.
Thanks.

How to display .m file content in objective c programmatically?

I need to display the content of a .h/.m file on the iPhone's screen, maybe in a UITextView, how can I do that ?
The problem is that i need the code to be coloured exactly as shown in code.
Thank you in advance.
You should take a look at my answer to this question.
The best solution seems to be ParseKit.

UITextView scroll

This is a real n00b question but i am very new at this and have been looking for an answer and also read the reference as i am trying to work with UITextView.
I want to add quite a lot of text into a view and i want it to be scrollable.
I have created the UITextView in IB, added text via "self.myTextView.text = #"...", which works. However i am not able to scroll down and see all text. I see only the amount of text that fits in the view i have.
I wonder if someone nice could help me and give an example/hint how to get the UITextView scrollable.
Thank you.
If it's static text and you'd like some formatting, I recommend using a UIWebView. You can give it a variety of files types, and edit the file easily.