This question already has answers here:
How to use UIProgressView while loading of a UIWebView?
(3 answers)
Closed 8 years ago.
I've a UIWebView connected to a site that loads just fine. Now what, i want to do is connect a UIProgressView so that the UIProgressView shows the status of the loading of the page. I have already added a UIActivityIndicatorView. But i just don't really like it and doesn't fit the look and feel of my app. So, I want to use the UIProgressView instead.
Please take into consideration that i'm new to developing for iOS. So, my question is how can i assign a UIProcessView to a UIWebView?
You can use 3rd party controls
https://github.com/petr-inmite/imtwebview
Related
This question already has answers here:
Customize apps gallery in appstore page
(3 answers)
Closed 6 years ago.
I came across a few apps that have a customised App Store presence – OkCupid, Badoo, POF, plus a whole lot more.
These include a custom header image and custom background colour with a gradient in between.
How can we add these for our apps?
Example screenshots:
Yes, you can change check below link:
http://thenextweb.com/dd/2013/10/29/get-featured-app-store/
This question already has answers here:
How to animate application icon in iOS?
(5 answers)
Closed 6 years ago.
I was wondering if it is possible to have an app logo which could be different every day like a Calendar app logo changes according to date changes.
No it's not. Only Apple has access to that. You could probably do it on jailbroken devices, but not on regular ones. There is not API to do that.
This question already has an answer here:
Turn Off Clicking Keyboard Sound programmatically (iOS)
(1 answer)
Closed 8 years ago.
is it possible to disable the keynoard sound programmatically when user types on uitextfield?
I'm afraid that it is not possible. The clicking sound is a global setting which can be enabled/disabled in the iOS-Settings. Changing or temporarily disabling it from an app would therefore make not any sense.
This question already has answers here:
iOS Option Popup - Similar to Cut/Copy/Paste
(2 answers)
Closed 8 years ago.
I want to create same popUp as shown in image. This popUp is default in iPhone, but if I want to make it custom with my own message, how can I create it?
Cite from iOS Option Popup - Similar to Cut/Copy/Paste
UIMenuController and UIMenuItem is what you are looking for.
Here you find also an example project by Apple that explains how to use them.
This question already has an answer here:
Reuse iOS passcode / dialer keyboard
(1 answer)
Closed 9 years ago.
Was wondering if an api exists to let you use this lock screen within your apps
Thanks.
There is no view in cocoa-touch that provides this lock screen. If you wish to use a lock screen in your app, you will need to implement your own.