我已经创建了一个向导,供用户使用我的应用进行注册,但是,我对如何在途中存储信息存有疑问。
我有一个User
模型,当用户从数据库中取出时会填写该模型,但是,此模型上有一些必需的字段,如果没有填写当用户通过向导时,我将它用作传递的对象。
这是我的User
模型:
final class User: NSObject, ResponseObjectSerializable, ResponseCollectionSerializable {
let id: Int
var facebookUID: String?
var email: String
var firstName: String
var lastName: String
var phone: String?
var position: String?
var thumbnail: UIImage?
var timeCreated: CVDate
init?(response: NSHTTPURLResponse, var representation: AnyObject) {
if let dataRepresentation = ((representation as! NSDictionary).valueForKey("data") as? [String: AnyObject]) {
representation = dataRepresentation
}
self.id = representation.valueForKeyPath("id") as! Int
self.facebookUID = (representation.valueForKeyPath("facebook_UID") as? String)
self.email = (representation.valueForKeyPath("email") as? String) ?? ""
self.firstName = (representation.valueForKeyPath("first_name") as? String) ?? ""
self.lastName = (representation.valueForKeyPath("last_name") as? String) ?? ""
self.phone = (representation.valueForKeyPath("phone") as? String)
self.position = (representation.valueForKeyPath("position_name") as? String)
self.thumbnail = UIImage(named: "ThomasBaldwin")
if let timeCreated = representation.valueForKeyPath("time_created") as? String {
let formatter = NSDateFormatter()
formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZ"
if let date = formatter.dateFromString(timeCreated) {
self.timeCreated = CVDate(date: date)
} else {
self.timeCreated = CVDate(date: NSDate())
}
} else {
self.timeCreated = CVDate(date: NSDate())
}
}
static func collection(response response: NSHTTPURLResponse, representation: AnyObject) -> [User] {
var users: [User] = []
if let dataRepresentation = ((representation as! NSDictionary).valueForKey("data") as? [NSDictionary]) {
if let dataRepresentation = dataRepresentation as? [[String: AnyObject]] {
for userRepresentation in dataRepresentation {
if let user = User(response: response, representation: userRepresentation) {
users.append(user)
}
}
}
}
return users
}
}
注意变量id
和timeCreated
。这些都是在将新行添加到数据库中的Users
表时生成的,因此,在实际创建用户之前,我没有这些变量的值。
另外,我想在模型中添加一些方法,例如validateUser
,这将是一个确保填写所有字段的方法,validateEmail
这将是一个方法,确保电子邮件的语法正确,依此类推......
我的问题是,我应该是谁
A。只需使这些常量可选,并将这些方法添加到我当前的User
模型中
B。制作另一个名为CreateUserModel
的模型,该模型只包含用户填写信息的变量,并将额外的方法放在那里
更新
我更新了我的User
类,使用字典作为存储机制,它已经看起来更清晰了。然而,想到的问题是,另一个程序员将如何知道他可以从User
模型中获取哪些字段,因为我不再单独将它们存储为变量。他们只需检查数据库并查看表的结构吗?
这是我更新的用户类:
final class User: NSObject, ResponseObjectSerializable, ResponseCollectionSerializable {
var properties = NSDictionary()
init?(response: NSHTTPURLResponse, representation: AnyObject) {
if let dataRepresentation = ((representation as! NSDictionary).valueForKey("data") as? [String: AnyObject]) {
properties = dataRepresentation
}
properties = representation as! NSDictionary
}
static func collection(response response: NSHTTPURLResponse, representation: AnyObject) -> [User] {
var users: [User] = []
if let dataRepresentation = ((representation as! NSDictionary).valueForKey("data") as? [NSDictionary]) {
if let dataRepresentation = dataRepresentation as? [[String: AnyObject]] {
for userRepresentation in dataRepresentation {
if let user = User(response: response, representation: userRepresentation) {
users.append(user)
}
}
}
}
return users
}
}
答案 0 :(得分:5)
我会让他们成为Optionals。这是Optionals的美妙之处 - 您可以使用nil
来表示“此处没有数据”。
我想到的另一个大策略是使用字典作为模型中的存储机制,因为这样既可以有某个键,也可以不使用。您可以通过将键传递到字典来使您的User对象键值编码符合,从而有效透明。