Articles tagged 'notes'
Page 2 of 2
We can install Fastlane as a Homebrew cask or as a gem. I'll go the gem route.
add a Gemfile on your project:
1
2
3
4
|
#Gemfile
source "https://rubygems.org"
gem "fastlane"
|
We are going to use bundler. If you are familiar with Ruby development, you...
Read More...
From the help obtained on
1
2
3
|
$ xcodebuild -version
# Xcode 10.3
# Build version 10G8
|
This are the options available for the exportOptins Property List file:
compileBitcode : Bool
For non-App Store exports, should Xcode re-compile the app from...
Read More...
If we use custom cells for a UITableView, and we want to re-order using drag and drop, we need to make our cell model conform to NSItemProviderWriting, NSItemProviderReading and NSObject. To move an object using drag and drop, we need to to be able...
Read More...
We can do this by adding the following fields to the info plist:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key> |
Read More...
There are small details of UITableView that are simple but makes the table view look good. One of those is hiding the separator for empty cells.
A table view has a header, body and footer. Most of the time, when we start a project, we drag a table...
Read More...
I am using the coordinator pattern on my Counter App. These are the steps to implement the coordinator pattern.
Read More...