Disabling Keyboard sound programmatically [duplicate] - ios

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.

Related

Fit with open keyboard Swift [duplicate]

This question already has an answer here:
How to move bottom view to top of UIKeyboard
(1 answer)
Closed 5 years ago.
I am a beginner in Swift and I have a PopUp on a screen that lists some items, I would like to know how I do when to open the keyboard the PopUp resize, without the keyboard overlapping it. Thanks, I hope someone can help.
enter image description here
use notification to get event when keyboard opens or hides.
In that appropriate event, you can resize popup screen.
https://stackoverflow.com/a/27135992/8358956 this answer can be helpful to you.

How to change ios keyboard language [duplicate]

This question already has answers here:
iPhone: Change Keyboard language programmatically
(7 answers)
Closed 6 years ago.
How to change ios keyboard language, for example, i have 3 textfields, when textfield1 becomeFirstResponder, i want to use emoji keyboard, when textfield2 becomeFirstResponder, i want to use english keyboard, when textfield3 becomeFirstResponder, i want to use chinese keyboard, is there any way to do it? I had not found some API in Apple Document, could you give me an idea?
This is a user defined setting and can not change it by the Programming.

How to create copying pop-up? [duplicate]

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.

allows to use apple's lock screen? [duplicate]

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.

How to use UIProcessView With UIWebView [duplicate]

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

Resources