Jakir HossainFix the MacBook battery draining issue in sleep mode on macOS SequoiaMy old MacBook was draining its battery too fast after updating to macOS Sequoia. I found a workaround. Just change the hibernation mood of…Oct 10Oct 10
Jakir HossainE-commerce iOS App with Laravel API and Stripe Integration — SwiftUICreating a fully functional e-commerce app requires a backend API and payment integration. I have developed a simple project to…Oct 8Oct 8
Jakir HossainGitHub to cPanel Continuous IntegrationGitHub Actions allows you to automate tasks like testing, building, and deploying code directly from your GitHub repository. There are a…Oct 8Oct 8
Jakir HossainCoreML Intro — Image ClassificationCore ML is Apple’s machine learning framework designed to integrate machine learning models into iOS, macOS, watchOS, and tvOS apps. It…Oct 4Oct 4
Jakir HossainEnable Image Cache in AsyncImage — SwiftUIAsyncImage in SwiftUI does not automatically cache images. Each time the view appears, it re-fetches the image from the URL unless we…Oct 3Oct 3
Jakir HossainViewBuilder for Conditional Views — SwiftUI@ViewBuilder lets you return different views based on logic inside a single view container, which helps with organizing code better in…Oct 2Oct 2
Jakir HossainSwiftUI Multi-Platform AppWe can create a SwiftUI app in Xcode, that targets multiple platforms (iOS, macOS, watchOS, etc.) using the same codebase. When you create…Oct 2Oct 2
Jakir HossainEnable Developer Mode on Apple WatchI was trying to add watchOS Target to my existing project. Everything was fine and I can run the app on Watch Simulator. But I couldn’t run…Jun 27Jun 27
Jakir HossainApply pinch to zoom in any view in SwiftUI — iOSI’ve previously discussed implementing the zoom feature for images. However, we can apply pinch-to-zoom functionality to any view in…Mar 271Mar 271
Jakir HossainHow to apply pinch to zoom to an image in SwiftUI — iOSUsing MagnificationGesture, we can apply pinch to zoom to an image in SwiftUI. Here is an example:Mar 261Mar 261