Simple way to use fastlane for your iOS project.
There are many things to consider for reducing deployment time.
[18:55:36]: Created new folder ‘./fastlane’. [18:55:36]: Detected an iOS/macOS project in the current directory: ‘GitToday.xcworkspace’ [18:55:36]: —————————– [18:55:36]: — Welcome to fastlane 🚀 — [18:55:36]: —————————– [18:55:36]: fastlane can help you with all kinds of automation for your mobile app [18:55:36]: We recommend automating one task first, and then gradually automating more over time [18:55:36]: What would you like to use fastlane for? [18:56:39]: ——————————– [18:56:39]: — Login with your Apple ID — [18:56:39]: ——————————– [18:56:39]: To use App Store Connect and Apple Developer Portal features as part of fastlane, [18:56:39]: we will ask you for your Apple ID username and password [18:56:39]: This is necessary for certain fastlane features, for example: [18:56:39]: [18:56:39]: - Create and manage your provisioning profiles on the Developer Portal [18:56:39]: - Upload and manage TestFlight and App Store builds on App Store Connect [18:56:39]: - Manage your App Store Connect app metadata and screenshots [18:56:39]: [18:56:39]: Your Apple ID credentials will only be stored in your Keychain, on your local machine [18:56:39]: For more information, check out [18:56:39]: https://github.com/fastlane/fastlane/tree/master/credentials_manager [18:56:39]: [18:56:39]: Please enter your Apple ID developer credentials [18:56:39]: Apple ID Username:
RxSwift 02, Creating Operators (of, just, from, create..) with example code
RxSwift 02, Creating Operators (of, just, from, create..) with example code
Test code of RxSwift (feat. RxTest and RxBlocking)
It is the post which I studied for high coverage of test code in company.
RxSwift 01, What is Observable and Observer?
For Arranging the concept of RxSwift, I decided to write series of Understanding rxswift
posting.
What is difference between init and convenience init in Swift
To develope my own app, I have browsed others github swift code. From a extension for making UIColor possible to use hex, I found convenience init
.
Unit Test in iOS
I have heard many times about importance of test code. However, I have no experience of managing big size app, it is hard to deal with.
Hit Testing in Swift
My previous postings are Responder chain, and UIControl.
Responder Chain and Touch Event : UIResponder, UIEvent,UIControl.
My previous posting is about UIControl.
Understanding UIControl in Swift
When I study how to make button programmatically, I found to write UIControl.state
for setTitle and setTitleColor, and to write UIControl.event
for addTarget.
Swift programmatic UI (Auto Layout)
When I first study iOS, I wonder which tool should I use between storyboard, programmatic UI, and SwiftUI.
Coordinator pattern in swift
Recently, I realized that my app’s UI Layer instances are too much coupled.
Delegate pattern example in Swift
This time, let us study about delegate pattern
in swift.
What is Optional in Swift
In Swift, variable must have value. Because swift wants to ensure safety from run-time error, swift do not allow NULL in variable.
Swift ARC vs MRC, and Retain cycle (+ weak,unowned)
We have heard many times about memory leak issues, but it is hard to understand 100%.
Swift ReactorKit Example, Let us study the flow of Reactor
I often have heard that ReactorKit usefully give structure of RxSwift.
Swift Multi-Threading, Example based Understanding GCD (Grand Central Dispatch)
In Swift, Grand Central Dispatch API (GCD) sopports thread programming.
Swift Async Programming @escaping closure, and Completion handler
When I use HTTP connection for login system , I should catch the end point of getting data.
Applying UITableview with RxSwift in various situations
Applying UITableview with RxSwift in various situations is an difficult issue for junior developer including me.