Swift Flashcards
What is a nil value?
Nothing
What is the purpose of nil?
Used to represent the absence of a value.
Can ints be assigned to nil?
False
Can ints be assigned to objects?
False
What is a function?
Self contained chucks of code that performs a specific task.
Do you give a name to a function to be called upon?
Yes
What is a method?
Functions that are associated with a particular type.
What are some instance methods in swift?
Classes, structures, and enumerations because they all encapsulate a specific task.
What is a syntax?
Specific rules and symbols that are considered correctly structured in code.
Does every function in swift have a type?
True
What is a return statement?
Tells the program to return to the original address.
What is () called?
Placeholder
What does a if/else statement do?
If a condition is met execute the code else execute the second line of code.
> , =, <=
These are examples of what kind of operators?
Comparison Operators
What is an instance?
A var defined in a class.
What is nesting?
Loops that contain other loops.
What does % 2 == 0 do?
Tests evenness.
What does % 2 == 1 do?
Tests oddness.
What does sum do?
Causes the playground to print a total sum.
Are dictionaries ordered or unordered?
Unordered
What are dictionaries?
You type in a key (keyword) and the program returns a value.
What is initialization?
The process of preparing an instance, class, structure, enumeration for use.
What is … ?
A closed range operator.
What is hashable?
A special function that can change each key into a integer.
Are ranges hashable?
No
How do you unwrap an optional?
if let statement
What does the import keyword do?
Accesses code that is written in the framework.
Bundles of code specialized for a certain purpose that we can use in our projects
Framework
What is a Plist?
Property’s List is apples own data format that makes it easy to store simple data like numbers, strings, and truth values
What is JSON?
Short form “JavaScript Object Notation” uses data to communicate between devices.
What is a Key in Plist?
A unique string that identifies a value (unless an array is specified)
What is a Type in Plist?
A type of value that exists in a key.
What is a value in Plist?
The value that exists in the key.
A way for us to covert an object of one type to another type.
Conditional Downcasting
Will the conversion of a downcast fail of the literal value in the Plist is not the one you specified?
Yes
What does
let declaration = Bundle.main.url(forResource: String, withExtension: String)!
do?
Starts extraction of the Plist data
What does let studentsDictionary = NSDictionary(contentsOfURL: studentsPlist) as! [String:Any] do?
Convert the Plist dictionary to a swift type dictionary.
What does
if let shawn = studentsDictionary["Shawn"] as? [String:Any] { // continue extracting values... }
do?
Convert each student item into it’s own dictionary type.
How are JSON arrays specified?
By brackets. []
What are JSON objects specified with?
Curly braces {}.
What is key: value syntax?
Key-Value pair.
What is key: value syntax?
Key-Value pair.