How can you still receive calls when bedtime and sleep mode (Do Not Disturb) are turned on on your Apple iPhone and Apple Watch?

I just activated the Apple iOS Bedtime and Sleep features for my iPhone and Apple Watch. But you may notice one thing: once your Sleep time starts, your iPhone stops ringing for incoming calls. So here is how to turn off the silent incoming call feature… Step 01: Go to your settings app on your …

Apple Music Error [Solved] – Some items, including “Song’s Title”, were not copied to the iPhone “John Appleseed’s iPhone 11 Pro” because they could not be found.

After I started syncing my Apple Music to my iPhone via the Finder app, I repeatedly received an error. The error was ‘Some items, including “Song’s Title”, were not copied to the iPhone “John Appleseed’s iPhone 11 Pro” because they could not be found.’

Programmatically identify iPhone devices that have a notch or safe area.

Since the iPhone X, Apple has released various sizes of iPhones with a notch. So, Identifying new iPhones that have a notch or don’t is a new problem for every Apple App Store App Developer. Apple just released in 2020 with iPhone 12, Pro, Pro Max and Mini, which are not similar in screen dimensions …

Programmatically identify device type iOS, iPadOS & macOS Catalyst.

If you are developing a macOS catalyst app, you may be wondering how to conditionally write code specifically for iOS, iPad OS, or the macOS 10.15 catalyst app. Here is how to do it. Use the code below to declare specifically written code, which will compile only for iOS and iPadOS.

Set UINavigation Bar Large Title Text Foreground Colour.

Here is how to set UINavigation Bar Large Title Text Colour (Foreground Colour) in iOS 11, 12, 13 and above, Declare Navigation Bar Title Text & Large Title Settings like this in your View Controller’s ViewDidLoad() Method: Now write the below line inside ViewDidLoad() to get the Large Title Foreground colour as White Colour like …

Set UIImageView Image Inset for iOS and iPadOS app.

Here is an example if you want to inset UIImageView so that the image does not fit edge to edge of the UIImageView Note:The latest version of Xcode & Latest version of Swift Programming Language is preferred. Here is step by step procedure to achieve the designed result: Step 01:Create Apple iOS Project in Xcode. …

Animate tab bar switches with a transition effect for UITabBarViewController.

I was searching the web for answers on how to give the CurlUp / CrossDissolve / FlipFromRight / FlipFromLeft / CurlDown / FlipFromTop / FlipFromBottom transition effect for the UITabBar Tab Switch. I found this answer, but it has a bug or a black screen when you tap on the same tab twice, i.e., the …

Hide the Navigation Bar on Scroll.

Assumption:I assume you have embedded UINavigationBar inside your Apple iOS app on Storyboard. If you want to mimic the behaviour of the Apple Safari iOS App, such as hiding the navigation bar on the scroll, you can do it in just a single line of code without any hassle. You have to add the following …

Programmatically change the UITabBar Tint Color and the UITabBar Item selected and unselected icon tint color.

Assumption:I assume you have deployed UITabBarViewController in your iOS App. Now you want to change the Tint color of the UITabBar, the Tint color of the UITabBar item, and the tint color of the UITabBar’s unselected icon. Doing this is just as simple as a single line of code. The code below will go to …

Programmatically set the icon/image for the Tab Bar Item in UITabBarViewController.

Assumptions:I assume you have already embedded in UITabBarViewController for your ViewController in Interface Builder. You also have three tab bar items with individual view controllers and created image assets with your icons. Copy the following code using your current View Controller’s ViewdidLoad method.