developer resources
Codebales holds an ever growing number of solutions to problems that we have experienced in our day to day code writing
494
results
Andrew Fletcher
•
When managing a navigation title in Swift, you will have trodden down the path. Previously you have entered something like
.navigationTitle("Title")If you wanted to alter the font used for the navigation area, alter the init() in the view:
struct YourView: View {
// ... code ... //
init() {
// Use this if NavigationBarTitle is with large font
UINavigationBar.appearance().largeTitleTextAttributes = [.font : UIFont(name: "Georgia-Bold", size: 20)!]
}
...
Andrew Fletcher
•
I had been running a few Centos 6 servers just past their EOL (30th November...
Andrew Fletcher
•
Struggling to hide the SwiftUI separators in a List or Form?
The...
Andrew Fletcher
•
Well for me it is very slow. Recently, I upgraded from CentOS 6 to Centos...
Andrew Fletcher
•
Core Data - customising our data model
When you are using Core Data, and let's...
Andrew Fletcher
•
Regular expressions (regex) are extremely useful in extracting information from any text by searching for one or more matches of a specific search pattern.
The basic anchors - ^ and $
expression
action
^The
matches any string that starts with The
end$
matches a string that ends with end
^The end$
exact string match (starts and ends with The end)
pragmatic
matches any string that has the text pragmatic in it
The basic quantifiers — * + ? and...
Andrew Fletcher
•
In SwiftUI, has made creating a list of item very easy. If...
Andrew Fletcher
•
SwiftUI’s sheets are used to present new views over existing ones, while still...
Andrew Fletcher
•
I attempted the run command and the response I had was succeeded, but then...
Andrew Fletcher
•
Working in Laravel, I needed to loop through an array and know whether the...
Andrew Fletcher
•
Step 1: Install Homebrew
Homebrew is the missing package manager for macOS.
As per the Homebrew site, paste the following in a macOS Terminal prompt.
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"This acton will install Homebrew on your OSX. Using the following command you can check the brew version
$ brew -v
Step 2: Install Node via Homebrew
Type following command to install node
$ brew install nodeCheck the Node and NPM version...
Andrew Fletcher
•
Working with buttons
To begin, what is a button in SwiftUI?
struct MainView:...
Andrew Fletcher
•
I need to set the default php-version of a subscription to php7.3. The...
Andrew Fletcher
•
Setting up the mail configuration in October CMS is a quick progress....
Andrew Fletcher
•
Don't worry this is an issue that many Drupal developers have come across....