Tag

ios

9 stories
J
Joynal Abedin

What's new Xcode 27.0 ?

There are five things we discuss today new in Xcode 27 Workspace Projects & files Intelligence Running apps Refining apps Workspace: Toolbar Themes Issues You can customize full toolbar in appearance. Xc...

5
What's new Xcode 27.0 ?
J
Joynal Abedin

How to Recover Discarded Code in Xcode Without a Git Commit?

If you've discarded code changes in Xcode without committing them to Git, don't worry—your Mac offers a built-in way to recover previous versions of your files. Here’s a step-by-step guide to help you retrieve your code ...

5
J
Joynal Abedin

Create custom header file comments with Xcode Text Macros

In Xcode, you can create custom headers for your Swift files using text macros. Text macros allow you to automatically insert boilerplate code or comments into your files, which can include information such as the author...

9
J
Joynal Abedin

NotificationCenter in swift

A notification dispatch mechanism that enables the broadcast of information to registered observers.-----Apple NotificationCenter in Swift is a mechanism for broadcasting information within a program. It allows objects...

4
J
Joynal Abedin

Commenting in Swift

In Swift, comments are used to add notes or explanations within the code, making it easier to understand. Swift supports two types of comments: single-line and multi-line comments. Here's a detailed explanation of both: ...

4
J
Joynal Abedin

How to Create a CocoadPods Library?

Building your own CocoaPods library in Swift involves several steps. Here's a guide to help you get started: Set Up Your Development Environment. Create Your Swift Project. Write Your Library Code. Create a Podspec ...

4
J
Joynal Abedin

Add Home Screen Quick Actions in SwiftUI

On the Home screen of a device running iOS 13 or later, apps can display Home Screen quick actions when users touch and hold the app icon (on a 3D Touch device, users press briefly on the icon). many apps are coming with...

5
J
Joynal Abedin

How i will copy text in swiftui?

@State var copiedText: String = \"\" private let pastboard = UIPasteboard.general var body: some View { TextField(\"This is plceholdr\", text: $myText) .border(.red).pad...

3
J
Joynal Abedin

Collections of Swift

Advantages of collections: Save Time. Improves Understanding. Facilates Collaboration. Reduces Errors. Increase Productivity.  var collectionArray = [\"iOS\", \"Flutter\", \"iOS\", \"Android\", \"Web\"]collectio...

5