Swift学习笔记 Introduction to Swift Programming for beginners

Introduction to Swift Programming for beginners

android 进阶的同时,该学学ios开发啦 。

When starting any language it’s important to get a firm understanding of the basics. This beginners introduction to programming with Swift will do just that. Mentioning best practices and coding conventions you’ll be developing iOS 8 apps in Swift in no time.

Table of Contents 目录

  1. What is Swift?
  2. Variables 变量
  3. Collections 集合
  4. Loops 循环
  5. Conditional Statements 条件语句
  6. Resources 资源
  7. References 引用

What is Swift?

In late 2014 Apple released a new programming language to create iOS and OS apps,this language is if you have not already guessed called Swift. Taken from Apple’s [1] own website:

Swift is an innovative new programming language for Cocoa and Cocoa Touch. Writing code is interactive and fun,the syntax is concise yet expressive,and apps run lightning-fast. Swift is ready for your next iOS and OS X project — or for addition into your current app — because Swift code works side-by-side with Objective-C.

Variables

Variables in Swift are a way for you to create dynamically assigned values. Dynamic means that the value you have set can change. To set a variable in Swift you would prefix your variable name with the word var. This then tells Xcode that you are declaring a variable to use. The name for the variable that you set is a way for you to reference the value you want to set and use. The standard convention for declaring variables in Swift is to use camel case (Wikipedia) [2]. Camel Case means that if you use several words to declare a variable,the first word will start with a lower case and the words after that will start with an uppercase.
变量 驼峰命名 变量名前加 var 前缀 。

Lets say you wanted to created a variable that would reference your age on Friday. You would do this like so:

var myAgeOnFriday

Because Swift is a type safe language it’s better (best practice) to create an explicit variable. This means you tell Xcode what type of variable is going to be used. After the above declaration you would follow that with a colon : and then declare the variable type. Because the above variable is going to be a number or integer we tell Xcode that it can expect an integer to be assigned like so:
冒号间隔 后面跟变量类型 :

var myAgeOnFriday : Int

Finally,the next thing we need to do to this variable is to specify the value. So let’s say on Friday you’re going to be 23 you then need to add the following and you have successfully declared a variable called myAgeOnFriday with the value of 23.

var myAgeOnFriday : Int = 23

In the above Swift variable declaration the equals sign = initialises the variable with that value.

Swift String Mutability 易变性
This might sound weird(怪异) or even scaring (可怕)but it is nothing to worry about. I’m only adding this section in briefly as I’ve seen a lot of people refer to the term String Mutability. When I first started coding I was very unfamiliar with this. So Succinctly(简洁的) here is the Explanation taken from Apple:

Integers
Integers in Swift is a whole number which can be positive or negative. As you can see in the above declaration you would initialise an integer in Swift with Int.
Float
A Float is basically an integer with a decimal place in it,for example 1.23. Setting a float variable in Swift is pretty much the same as setting an integer however you use the word Float. Let’s say you had loan amount that you borrowed and you needed to set this at the top of the code. You would do this like so:

var myLoanAmount : Float = 3500.37

Strings
A String is a collection of ordered characters and can be made up of both integers and letters. For example you could have:

var myStatusUpdate: String = "Today I won £300"

Boolean
Booleans are a fantastic type of variable that you can set. This variable will return the value of either true or false and to set it you use the Bool declaration after the colon in your variable,like so:

var isUserLoggedIn: Bool = true

Constants
So we have covered how to create variables in Swift and how you can change them. But what if you wanted to use a variable that you knew was not going to change? For example the date you were born. For this we can use a constant. Declaring a constant in Swift is a little different than the usual variable declaration of var instead we use let. So to declare a constant in Swift we would write:

let dateOfBirth: Int = 12011988

Swift Type Inference

So,the way that I have shown you so far is to declare your variable by giving it a name and then defining the type of variable: Int,String,Bool. However,This is only the best practice and you do not need to do this. Swift is clever enough to know what type of variable you are wanting to create just by the way you define the value (value is the assigned data at the right side of the equals sign). For example if you wrap the value in “value” double quotation marks then Swift will know that this value is a String. So using the above defined variables this is how you can define them without using the Swift explicit variable option:

// Declare an integer
var myAgeOnFriday = 23

// Declare a Boolean
var isUserLoggedIn = true

// Declare a String
var myStatusUpdate  = "Today I won £300"

As you can see,the colon and the declaration of type (Int,Boolean) is no longer required. This can save you a lot of time.
Concatenation
Concatenating strings is a way to join two or more strings together. This comes in very useful when you are gathering peoples names for example.

Let’s say that you have a variable called name:

var name = "iOS"

Which only has the first name but you want to assign a last name also. Because the variable as already been initialised you can simply just type the variable name and add it to itself.

name = name + " Blog"
// This now outputs 'iOS Blog'

Why would you do this? This might be very useful especially if you get the first name and the last name from different views and at different points throughout the application process.
You can also add two variables together like so:

var firstName = "iOS"
var lastName = " Blog"
var fullName = "" // Blank but initialised

fullName = firstName + lastName

// This outputs iOS Blog

You can also add in String variables and text and concatenate them together,like so:

var flowerColour = "red"
var flowerType = "Tulip"
var sentence = ""

sentence = "The " + flowerType + " was " + flowerColour + " and looked amazing"

// Outputs:
// The Tulip was red and looked amazing

Collections
Swift provides Arrays and Dictionaries to help you hold onto multiple values of data. These are called collections and are an absolute gem when you are wanting to re-use data multiple times throughout your project or even just to store associated data together in a nice bundle.
Dictionaries
In Swift,you can store associates Key and Value data in dictionaries. A quick way to remember this is just think about a book. The table of contents is the key and the page is the value. Dictionaries do not sort or organise your data in any specific order and to get the Value you need to reference the Key. Let’s say that you have three children (Rich,John and Carl) and you want to store their ages (3,5,9) respectively. You would do this like:

var children : [String: Int] = ["Rich" : 3,"John": 5,"Carl": 9]

As you can see in the example above,We have declared a Dictionary by typing var children :. We have then declared the type inference for the Key as String and the Value as Integer: [String: Int] and then we have added the values: = [“Rich” : 3,“John”: 5,“Carl”: 9]. Each of the Keys (the names) have the corresponding value (their ages).

To access a specific value,for example the age of John we would type:

children['John']

//Output
// 5

If you wanted to add another Key and Value to the dictionary (you have had another child) later you can do this:

children['Zoey'] = 1

Have you ever coded another language? PHP? This looks a lot like the way to push into an array.
Oh no,you got one of your kids ages wrong. Not to worry you can simply call the dictionary with the Key referencing the new Value and it will overwrite it. Like so:

children['Carl'] = 10

Now,Carl is 10. Your entire dictionary is: [“Rich” : 3,“Carl”: 10,“Zoey”: 1].

Ok,so let’s say that you want to remove a child from your family (I wont judge on the reason) you can run the same line you used to update the Value but this time set it to nil like so:
nil删除

children['Rich'] = nil

Oh dear,Rich is now no longer part of the ‘children’ dictionary.
Arrays
We know how to create a variable for a name,but lets assume that you are running a phone call tree and you have a list of 23 and growing names. Adding new lines for every single name is going to be tedious. So what is an Array? Well its basically a way to hold many variables in a specific order. An Array will assign each Value an index value. It’s important to know that the index values in Arrays start at 0.

Taking into account what I just mentioned that the list is for a phone call tree and that we do not know how many people will be in the list we can create an Array like so:

var phoneTreeNames: [String] = ["John","Laura","Chris","Dave","Liam","Joseph"]

As you can see,we have started with the declaration of a variable: var. and then specified the array name: phoneTreeNames and then the type inference of: String however we do not need to specify the type,just like we don’t when declaring variables in Swift.
As mentioned previously if you are wondering about the Mutability of Collections then the rules specified above are exactly the same.
As mentioned at the beginning of the Array section each Value in the Array will have an automatic index value assigned to it. We can use this to get the item out of the array like so:

var phoneTreeNames: [String] = ["John","Joseph"]

phoneTreeNames[3]
// Outputs Dave

So,how many names are in this Array? If you need to get the total value of these arrays at any time you can call the count function. Like so:

phoneTreeNames.count

//Outputs 6

Modifying arrays

You can append items to the array,providing that it is mutable. This means that you have declared the array with ‘var’ not ‘let’.

You can do this quite easily,like so:

phoneTreeNames.append("Simon")

If you are wanting to change the name in an array,then you can modify it using the allocated array index value.
Let’s say you want to change the name ‘Laura’ which is in the second position of the array but has an index value of 1. Remember I said that arrays start their index value at 0. You would do this like:

phoneTreeNames[2] = "Jeremy"

Oh no,Jeremy has decided to leave the phone tree and now you have to remove him from the list. no problem. Again use the array index value but this time pass it as a parameter to the Swift removeAtIndex(*) Function:

phoneTreeNames.removeAtIndex(2)

All done. He has now been removed from the list.
Loops 循环
Loops in Swift allow you to iterate over pieces of code and perform actions on them.
For Loops in Swift for 循环
One of the more common loops in Swift is the For-Condition-Increment (‘For loop’ for short). This loop follows this format:

for (variable; condition; increment) { }

The variable is often an integer that is used to keep track of the current number of loops iterated. The condition is checked after each loop; if it is true,the loop runs again. If the condition is false,the loop will stop running. Last but not least is the increment which is the amount added to the variable every time the loop executes.
Take the following code:

for (var counter = 0; counter < 6; counter++) { 
    println("Looped")
}

Ranges

Swift includes two range operators,which are shortcuts for expressing a range of values. A range is similar to an array of integers. There are two types of Ranges in Swift; Closed range and Half-Closed Range.

A closed range is written with three dots and includes the uppermost number:

1...5 
//1,2,3,4,5

A half-closed range is written with two dots followed by a less-than sign and does not include the uppermost number:不包含最高位

1..<5 
//1,4

You can use for-in loops with a range of numbers instead of an array or dictionary. For example:

for index in 1...5 {
    println("The current number is \(index)")
}
//Output
//The current number is 1
//The current number is 2
//The current number is 3
//The current number is 4
//The current number is 5

Conditional Statements 条件语句
Condition statements allow you to perform a task on a specific piece of code based on a condition. Let us assume that you have some data about cars and their colours but you only wanted to show the cars that were red. You would use a Swift Conditional Statement to achieve this.
if Statements

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘贴.待开发的功能:1.支持自动生成约束2.开发设置页面3.做一个浏览器插件,支持不需要下载整个工程,可即时操作当前蓝湖浏览页面4.支持Flutter语言模板生成5.支持更多平台,如Sketch等6.支持用户自定义语言模板
现实生活中,我们听到的声音都是时间连续的,我们称为这种信号叫模拟信号。模拟信号需要进行数字化以后才能在计算机中使用。目前我们在计算机上进行音频播放都需要依赖于音频文件。那么音频文件如何生成的呢?音频文件的生成过程是将声音信息采样、量化和编码产生的数字信号的过程,我们人耳所能听到的声音频率范围为(20Hz~20KHz),因此音频文件格式的最大带宽是20KHZ。根据奈奎斯特的理论,音频文件的采样率一般在40~50KHZ之间。奈奎斯特采样定律,又称香农采样定律。...............
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿遍又亿遍,久久不能离开!看着小仙紫姐姐的蹦迪视频,除了一键三连还能做什么?突发奇想,能不能把舞蹈视频转成代码舞呢?说干就干,今天就手把手教大家如何把跳舞视频转成代码舞,跟着仙女姐姐一起蹦起来~视频来源:【紫颜】见过仙女蹦迪吗 【千盏】一、核心功能设计总体来说,我们需要分为以下几步完成:从B站上把小姐姐的视频下载下来对视频进行截取GIF,把截取的GIF通过ASCII Animator进行ASCII字符转换把转换的字符gif根据每
【Android App】实战项目之仿抖音的短视频分享App(附源码和演示视频 超详细必看)
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至2022年4月底。我已经将这篇博客的内容写为论文,上传至arxiv:https://arxiv.org/pdf/2204.10160.pdf欢迎大家指出我论文中的问题,特别是语法与用词问题在github上,我也上传了完整的项目:https://github.com/Whiffe/Custom-ava-dataset_Custom-Spatio-Temporally-Action-Video-Dataset关于自定义ava数据集,也是后台
因为我既对接过session、cookie,也对接过JWT,今年因为工作需要也对接了gtoken的2个版本,对这方面的理解还算深入。尤其是看到官方文档评论区又小伙伴表示看不懂,所以做了这期视频内容出来:视频在这里:本期内容对应B站的开源视频因为涉及的知识点比较多,视频内容比较长。如果你觉得看视频浪费时间,可以直接阅读源码:goframe v2版本集成gtokengoframe v1版本集成gtokengoframe v2版本集成jwtgoframe v2版本session登录官方调用示例文档jwt和sess
【Android App】实战项目之仿微信的私信和群聊App(附源码和演示视频 超详细必看)
用Android Studio的VideoView组件实现简单的本地视频播放器。本文将讲解如何使用Android视频播放器VideoView组件来播放本地视频和网络视频,实现起来还是比较简单的。VideoView组件的作用与ImageView类似,只是ImageView用于显示图片,VideoView用于播放视频。...
采用MATLAB对正弦信号,语音信号进行生成、采样和内插恢复,利用MATLAB工具箱对混杂噪声的音频信号进行滤波
随着移动互联网、云端存储等技术的快速发展,包含丰富信息的音频数据呈现几何级速率增长。这些海量数据在为人工分析带来困难的同时,也为音频认知、创新学习研究提供了数据基础。在本节中,我们通过构建生成模型来生成音频序列文件,从而进一步加深对序列数据处理问题的了解。
基于yolov5+deepsort+slowfast算法的视频实时行为检测。1. yolov5实现目标检测,确定目标坐标 2. deepsort实现目标跟踪,持续标注目标坐标 3. slowfast实现动作识别,并给出置信率 4. 用框持续框住目标,并将动作类别以及置信度显示在框上
数字电子钟设计本文主要完成数字电子钟的以下功能1、计时功能(24小时)2、秒表功能(一个按键实现开始暂停,另一个按键实现清零功能)3、闹钟功能(设置闹钟以及到时响10秒)4、校时功能5、其他功能(清零、加速、星期、八位数码管显示等)前排提示:前面几篇文章介绍过的内容就不详细介绍了,可以看我专栏的前几篇文章。PS.工程文件放在最后面总体设计本次设计主要是在前一篇文章 数字电子钟基本功能的实现 的基础上改编而成的,主要结构不变,分频器将50MHz分为较低的频率备用;dig_select
1.进入官网下载OBS stdioOpen Broadcaster Software | OBS (obsproject.com)2.下载一个插件,拓展OBS的虚拟摄像头功能链接:OBS 虚拟摄像头插件.zip_免费高速下载|百度网盘-分享无限制 (baidu.com)提取码:6656--来自百度网盘超级会员V1的分享**注意**该插件必须下载但OBS的根目录(应该是自动匹配了的)3.打开OBS,选中虚拟摄像头选择启用在底部添加一段视频录制选择下面,进行录制.
Meta公司在9月29日首次推出一款人工智能系统模型:Make-A-Video,可以从给定的文字提示生成短视频。基于**文本到图像生成技术的最新进展**,该技术旨在实现文本到视频的生成,可以仅用几个单词或几行文本生成异想天开、独一无二的视频,将无限的想象力带入生活
音频信号叠加噪声及滤波一、前言二、信号分析及加噪三、滤波去噪四、总结一、前言之前一直对硬件上的内容比较关注,但是可能是因为硬件方面的东西可能真的是比较杂,而且需要渗透的东西太多了,所以学习进展比较缓慢。因为也很少有单纯的硬件学习研究,总是会伴随着各种理论需要硬件做支撑,所以还是想要慢慢接触理论学习。但是之前总找不到切入点,不知道从哪里开始,就一直拖着。最近稍微接触了一点信号处理,就用这个当作切入点,开始接触理论学习。二、信号分析及加噪信号处理选用了matlab做工具,选了一个最简单的语音信号处理方
腾讯云 TRTC 实时音视频服务体验,从认识 TRTC 到 TRTC 的开发实践,Demo 演示& IM 服务搭建。
音乐音频分类技术能够基于音乐内容为音乐添加类别标签,在音乐资源的高效组织、检索和推荐等相关方面的研究和应用具有重要意义。传统的音乐分类方法大量使用了人工设计的声学特征,特征的设计需要音乐领域的知识,不同分类任务的特征往往并不通用。深度学习的出现给更好地解决音乐分类问题提供了新的思路,本文对基于深度学习的音乐音频分类方法进行了研究。首先将音乐的音频信号转换成声谱作为统一表示,避免了手工选取特征存在的问题,然后基于一维卷积构建了一种音乐分类模型。
C++知识精讲16 | 井字棋游戏(配资源+视频)【赋源码,双人对战】
本文主要讲解如何在Java中,使用FFmpeg进行视频的帧读取,并最终合并成Gif动态图。
在本篇博文中,我们谈及了 Swift 中 some、any 关键字以及主关联类型(primary associated types)的前世今生,并由浅及深用简明的示例向大家讲解了它们之间的奥秘玄机。