This question already has answers here:
How can I check for an active Internet connection on iOS or macOS?
(46 answers)
Closed 9 years ago.
I have 1 button in Login page and I want to check user connected internet or not after user click button if user not connected internet I want to show alertView.
Pleas help me to coding, Thank you very much.
Check Apple's sample code Reachability then you will know how to use it.
Related
This question already has an answer here:
Sign in with Apple - Button customization
(1 answer)
Closed 1 year ago.
Is the "Sign in with Apple" button customizable at all in an iOS project using Objective-C?
if you take a look at the documentation (Sign In with Apple doc) you will se that you can customise it, but only colour, corner radius, and no much more...
can you explain what do you want to do exactly? maybe we can help!
This question already has answers here:
"Could not find any information for class named ViewController"
(40 answers)
Closed 4 years ago.
Continuously facing this error after updating to Xcode 9.3 Please help me
I faced it just yesterday here is what I did
Cleaned the project
Deleted derived data
Closed Xcode opened it up and tried again. It worked.
Click on cancel. Now retry until the blue line appear in the center, middle or top of available outlets. This will happen when u already have an outlet of same type and drop new over that.
This question already has answers here:
check if control center is used
(2 answers)
Closed 6 years ago.
I want to check whether control center is present in UIviewController.swift file or not,
how to do it?
please help me.
You can not do that. check this answer for reference
If they are active you can only check whether your app has backgrounder or foregrounded
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.