Uplift iOS Interview
"Uplift iOS Interview" is a comprehensive guide to help aspiring iOS developers soar to new heights in their careers. This book is an indispensable tool for anyone looking to crack the iOS interview and impress their future employers with their technical prowess. With in-depth coverage of Swift, AutoLayout, SwiftUI, Multithreading, Memory management so on and so forth, this book is a treasure trove of knowledge for anyone looking to uplift their iOS development career.
Using defer keyword in Swift code is uncommon. But, It is a very powerful concept for certain use case. The code block inside defer
statement is executed just before transferring program control. It does not matter how program control is transferred. I find this concept particularly useful when I need to clean up something inside the function or perform an action that needs to happen even if an error is thrown. Another very common use case is closing the file after a certain operation in FileHandle
.
func isFileValueAccessed(_ accessPath: String) -> Bool { if let fileHandle = FileHandle(forReadingAtPath: accessPath) { print("FileHandle is avaialble!") defer { fileHandle.closeFile() print("File is closed!") } } else { return false } print("Value is accessed!") return true } let _ = isFileValueAccessed("dummy_path") // Output // FileHandle is avaialble! // Value is accessed! // File is closed!
No matter how you exit, the defer statement is executed at the end. We can exit the current scope (The scope can be for in loop, do try-catch block, function body etc.) using single return, multiple returns or break. Here, the defer is executed in every possible case while exiting the scope. Writing the same exit code multiple times is not a smart thing to do.
Multiple defer statements execution order
If multiple defer
statements appear in the same scope, the order they appear is the reverse of the order they’re executed.
func printDeferCodeBlocks() { defer { print("This") } defer { print("is") } defer { print("nice") } print("Hi") } // Output // Hi // nice // is // This
Rev Up Your iOS Skills: Take a Dynamic Learning Journey

iOS Career Boost is the ultimate learning journey to elevate your iOS development career through a dynamic blend of visual learning, handy cheat sheets, coding practice materials, and expertly curated tips and tricks
Get Ready to Shine: Mastering the iOS Interview
- Uplift iOS Interview - A Comprehensive Guide to iOS Interview
- Xcode Cheat Sheet for Swift
- Xcode Cheat Sheet for SwiftUI
Enjoying the articles? Get the inside scoop by subscribing to my newsletter.
Get access to exclusive iOS development tips, tricks, and insights when you subscribe to my newsletter. You'll also receive links to new articles, app development ideas, and an interview preparation mini book. Your email address will only be used for the purpose of sending the newsletter and will not be shared with third parties or advertisers. Rest assured that we value your privacy and will not spam your inbox.
Connect with me on
Twitter and LinkedIn and don't hesitate to reach out with any questions about this post. Thank you for reading.