Category

Others

9 stories
J
Joynal Abedin

How i will install skip tools in mac?

Step_01: Open terminal and write this command for install skip: brew install skiptools/skip/skip Step_02: Now ensure that the development prerequisites are satisfied by running: skip checkup Step_03: Now create a n...

5
How i will install skip tools in mac?
J
Joynal Abedin

Git configure & terminal command for mac

1. Terminal command Show folder list: ls Enter any folder directory: cd folder_name Create new folder: mkdir foler_name Back from current directory to previous directory: cd .. Delete file: rm file_name Delete fol...

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

How to remove Main.storyboard properly in swift?

Step_1: Remove Main.storyboard from project file & select move to trash option. Step_2: Remove Main Storyboard File Base Name in your Info.plist. Step_3: Remove Main.storyboard from the Scene Manifest in your...

5
J
Joynal Abedin

PriceBD App Api Documentation

BaseURL: https://devilarticle.com 1. Auth API: There are 3 way you can implement login functionality: Step_01: If you didn't register yet then serially call API: Register -> VerifyOTPCode -> Login Step_02: If you wa...

5
J
Joynal Abedin

Price BD App UI/UX Design

![image](/uploads/content/d76a3e8b-f210-4f1b-b00b-66f240edf4b3.png) ![image](/uploads/content/23466954-1da2-42d6-adcf-b99c3d395311.png)...

7
Price BD App UI/UX Design
J
Joynal Abedin

CRUD in SwiftUI

First of all, create your demo project then right click project file -> Select Data Model -> give name \"SubjectsContainer\" and finally tap Create Button. After create core data file next create Entity. For create en...

5
J
Joynal Abedin

AVSpeechSynthesizer in SwiftUI

An object that produces synthesized speech from text utterances and enables monitoring or controlling of ongoing speech. To speak some text, create an AVSpeechUtterance instance that contains the text and pass it to spe...

5
J
Joynal Abedin

Implement Custom List View in SwiftUI

// // ContentView.swift // CustomListDemo // // Created by Joynal Abedin on 14/2/23. // import SwiftUI struct ListModel: Identifiable { let id = UUID() let name: String let age: Int let gender: Strin...

5