Skip to content
JOYNAL ABEDIN

JOYNAL ABEDIN

SOFTWARE ENGINEER

"The purpose of our life is to be happy"- Dalai Lama

  • Home
  • API
    • Web API
    • Swift API Call
      • Method 1 (URLSession)
      • Method 2 (Moya)
      • Method 3 (Combine 1)
      • Method 4 (Combine 2)
      • Using DataTask 1
      • Using Data Task 2
      • Using Data Task 3
      • Using Async Await 1
      • Using Async Await 2
  • WEB
    • .NET MVC CORE
    • HTML
    • CSS
    • BOOTSTRAP
    • JAVASCRIPT
    • Memory
  • iOS
    • Swift
    • SwiftUI
    • Animation SwiftUI
    • Combine
      • Combine Introductions
    • Objective-C
    • UI/Unit Test
      • Unit Test
      • Menu Ordering
      • UI Test
  • PROJECT
    • WEB DESIGN
    • IOS PROJECT
  • LANGUAGE
    • C
    • C++
    • C#
    • JAVA
    • PHP
    • PYTHON
  • RESEARCH
    • MACHINE LEARNING
      • Depression Analysis On Final Year Undergraduate Students Through Machine Learning Techniques
      • Titanic: Machine Learning from Disaster
    • ARTIFICIAL INTELLIGENCE
  • LINK
    • Github Link
    • LinkedIn Link
    • Website Link
    • All Important Link
  • About Me
  • Others

swiftui

SHORT QUESTIONS Uncategorized 

Where we should use @StateObject @ObservedObjec in SwiftUI?

22/10/202209/11/2022 joynal27 215 Comments @ObjervedObject, @StateObject, swiftui

@StateObject -> Use this on creation/init() in parent view @ObservedObject -> Use this for subViews() in parent view

Read more
SHORT QUESTIONS Uncategorized 

How i will check is it dark mode or light mode in swiftUI?

22/10/202209/11/2022 joynal27 239 Comments colorScheme, dark, light, mode, swiftui

@Environment(\.colorScheme) var colorScheme colorScheme == .light or colorScheme == .dark  

Read more
SHORT QUESTIONS Uncategorized 

How i will back previous view without using .navigationBar() in swiftUI?

21/10/202209/11/2022 joynal27 207 Comments back, dismiss, swiftui

Declare in properties field top in the View:  @Environment(\.presentationMode) var presentationMode finally write the action code: presentationMode.wrappedValue.dismiss()

Read more
SHORT QUESTIONS Uncategorized 

How i will show new screen using .sheet(), Transition & AnimationOffset in SwiftUI?

21/10/202209/11/2022 joynal27 240 Comments animation, offset, sheet(), swiftui, transition

import SwiftUI struct PopOverUsingTransitionOffsets: View { @State private var showSheet = false @State private var showNewScreen = false var body:

Read more
SHORT QUESTIONS Uncategorized 

How to use .sheet() & .fullScreenCover() in SwiftUI?

21/10/202209/11/2022 joynal27 263 Comments fullScreenCover(), sheet(), swiftui

// // SheetsView.swift // BeginerLabelAllDemo // // Created by JOYNAL ABEDIN on 21/10/22. // import SwiftUI struct SheetsView: View {

Read more
SHORT QUESTIONS Uncategorized 

Added Different types of buttons in SwiftUI

21/10/202209/11/2022 joynal27 146 Comments Button, swiftui

import SwiftUI struct AddingButtonView: View { @State var title = “Here is my title” var body: some View { VStack

Read more
SHORT QUESTIONS Uncategorized 

How i will pined section view when i scroll Grid View in SwiftUI?

21/10/202209/11/2022 joynal27 85 Comments grid, pined, pinedView, sectionheader, swiftui

LazyVGrid(columns: [GridItem], alignment: .center, spacing: nil, pinnedViews: [.sectionHeaders]) { }  

Read more
SHORT QUESTIONS Uncategorized 

How i will prevent updates child Views when new value same as old value in swiftUI?

21/10/202209/11/2022 joynal27 293 Comments equatable, modifier, swiftui

We can prevent updates using .equatable modifier struct CalendarContainerView: View { @EnvironmentObject var store: CalendarStore var body: some View {

Read more
SHORT QUESTIONS Uncategorized 

How i will get index number from Foreach loop in swiftUI?

20/10/202209/11/2022 joynal27 769 Comments foreach, indexNumber, swiftui

let data = [String]() ForEach(data.indices) { index in print(data[index]) }  

Read more
SHORT QUESTIONS Uncategorized 

How i will add Angular Gradient in SwiftUI?

19/10/202209/11/2022 joynal27 188 Comments angular gradient, swiftui

RoundedRectangle(cornerRadius: 25.0) .fill( //Angular gradient AngularGradient(gradient: Gradient(colors: [Color.red, Color.green, Color.yellow]), center: .center, angle: .degrees(45)) ) .frame(width: 300, height: 200)  

Read more
  • ← Previous
  • Next →

MEMORY & THREAD IOS

operationQueue
Memory Thread 

Operation & OperationQueue

24/08/202217/09/2022 joynal27 360

Operations are an object-oriented way to encapsulate work that you want to perform asynchronously. Operations are designed to be used

DispatchGroup
Memory Thread 

Dispatch Group

14/08/202217/09/2022 joynal27 17,242
DispatchSemaphore
Memory Thread 

DispatchSemaphore

03/08/202217/09/2022 joynal27 9,063
Swift Concurrency
Memory Thread 

Swift Concurrency: Introduction

26/07/202217/09/2022 joynal27 951

SHORT QUERY

SHORT QUESTIONS Uncategorized 

How i will Read & Write Data in path Swift?

08/11/202209/11/2022 joynal27 331

//directory let path = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0].appendingPathComponent(“fileSave”) let data: Data! //for Read Data do{ data = try Data(contentsOf: path)

SHORT QUESTIONS Uncategorized 

Custom viewDidLoad() Modifier in SwiftUI

22/10/202209/11/2022 joynal27 695
SHORT QUESTIONS Uncategorized 

How i will change color & text in keyboard return button swiftui?

22/10/202209/11/2022 joynal27 296
SHORT QUESTIONS Uncategorized 

How i will swipe list item in swiftUI?

22/10/202209/11/2022 joynal27 325
SHORT QUESTIONS Uncategorized 

How i will select text in swiftUI?

22/10/202209/11/2022 joynal27 205
SHORT QUESTIONS Uncategorized 

Where we should use @StateObject @ObservedObjec in SwiftUI?

22/10/202209/11/2022 joynal27 215
SHORT QUESTIONS Uncategorized 

How i will check is it dark mode or light mode in swiftUI?

22/10/202209/11/2022 joynal27 239
SHORT QUESTIONS Uncategorized 

How i will back previous view without using .navigationBar() in swiftUI?

21/10/202209/11/2022 joynal27 207
SHORT QUESTIONS Uncategorized 

How i will show new screen using .sheet(), Transition & AnimationOffset in SwiftUI?

21/10/202209/11/2022 joynal27 240
SHORT QUESTIONS Uncategorized 

How to use .sheet() & .fullScreenCover() in SwiftUI?

21/10/202209/11/2022 joynal27 263

WatchOS

WatchOS Widget 

Gauge Style in SwiftUI

09/09/202309/09/2023 joynal27 73

In iOS 16, SwiftUI introduces a new view called Gauge for displaying progress. You can actually use it to show values within a

WatchOS 

Complications(accessories) guideline for WatchOS

08/09/202308/09/2023 joynal27 139
WatchOS 

Data Transfer iPhone To Watch using SwiftUI

30/07/202330/07/2023 joynal27 242

About Author

My name's Joynal Abedin & I'm software engineer. I work with iOS & Web Development. I have joined Tech Department & Work On 4+ years as a iOS Developer(On Going) Appnap Technologies Ltd. I’ll be getting in touch with bloggers to increase our online presence with such a wonderful excellence blogging article.

Contact Me

Gmail: joynalcu7@gmail.com

Copyright © 2025 JOYNAL ABEDIN. All rights reserved.
Theme: ColorMag by ThemeGrill. Powered by WordPress.