Home > Web Front-end > JS Tutorial > body text

Basic knowledge about swift

php中世界最好的语言
Release: 2018-03-12 16:31:23
Original
1236 people have browsed it

This time I will bring you the basic knowledge about swift. What are the precautions about the basic knowledge of swift. The following is a practical case, let’s take a look.

cmd + ctrl + e Replace the same object name

cmd + shift + o Search and find

Use guard syntax to determine whether each item has a value in turn. As long as one item is nil, the subsequent code will no longer be executed!

guard let pty = list?[i],           let cName = property_getName(pty),           let name = String(utf8String: cName)          else{                    // 这个guard 在for循环里面,不能写return                    // 继续遍历下一个                    continue}
在闭包中调属性, 需要用self.调用
loadData { (list) in            print(list)            // `拼接`数组, 闭包中定义好的代码, 在需要的时候执行, 需要 self. 指定语境             self.personList += list            // 刷新表格 }
Copy after login

Type conversion as
Except String in Swift, most of the uses of as require? / !
as! / as? is determined directly based on the previous return value
Note: if let / guard let is used to detect null statements, always use as?

let vc = segue.destination as! DetailViewController        
// 设置选种的 person, indexPathif let indexPath = sender as? IndexPath {      // indexPath 一定有值
      vc.person = personList[indexPath.row]
}
Copy after login

Closed callback value passing

Declare a closure attribute

//闭包是可选的var completionCallBack: (()->())?
Copy after login

2. Call the closure to pass the value

// 执行闭包回调// OC 中执行block前都必须判断是否有值, 否则容易崩溃// ! 强行解包 (Xcode 帮助修订, 一定不要用 `!`)// ? 可选解包 -> 如果 闭包为 nil, 就什么也不做completionCallBack?()
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Related reading:

Detailed explanation of the use of Rxjs

Using CSS to implement text truncation in HTML

The above is the detailed content of Basic knowledge about swift. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!