【发布时间】:2017-05-23 21:04:21
【问题描述】:
我目前正在学习 swift,所以我正在使用 xcode 在 swift 操场上工作。
我正在处理课程,但我得到了一些额外的输出,这让我分心。
我不知道我是否修改了 xcode 偏好或我的代码有问题。
//: Playground - noun: a place where people can play
import UIKit
class Person {
var name = ""
}
class BlogPost {
var title:String?
var body = ""
var author:Person!
var numberOfComments = 0
}
let post = BlogPost()
if let actualTitle = post.title {
}
我只想摆脱 __lldb_expr_114。
【问题讨论】: