Creating Command Line Tools Using ArgumentParser in Swift

preview_player
Показать описание
In this video, Mohammad Azam will introduce ArgumentParser. ArgumentParser is a framework in Swift, which allows to create command line applications in Swift language.

If you want to support my work then please consider buying one of my courses below. The links below already has coupon attached which will give you the best deal possible. Thank you for your support!

SwiftUI - Declarative Interfaces for any Apple Device

Flutter and Dart - Build Apps Using MVVM Design Pattern

Mastering RxSwift in iOS

MVVM Design Pattern Using Swift in iOS

Mastering ARKit for iOS

Intermediate and Advanced iOS - Build Real World Apps

The Complete Guide to JSON Parsing in Swift

Data Structures and Algorithms in Swift

Design Patterns in iOS Using Swift

Mastering MapKit for iOS

Machine Learning in iOS Using Swift

Mastering Firebase for iOS Using Swift

Mastering Server Side Swift Using Vapor 3

NodeJS - The Complete Developer Bootcamp

The Complete Guide to Lean Controllers in iOS
Рекомендации по теме
Комментарии
Автор

Thanks azamsharp, how would you go about putting the argument/program in $Path and have it be usable by others without swift run ect.


PS: I hope you eventually make a patreon so people can support you directly and without udemy taking a chunk

yixe
Автор

Hi Azamsharp, when I run the command line : swift package generate-xcodeproj, I have an error message, do you have a new method for generate that ?

elliotknight
Автор

I couldn't get default to work in Option, something must have changed in Xcode 12.4. I ended up doing it like this: @Option(help: "Width of output image") var width: Int = 1200

ConfusedNDazed