この忌まわしきものをきれいにする方法を提案してもらえますか
func restartLastSession(let extra : String?)
{
let rescopes = NSMutableArray(array: [ "restart" ])
if(extra != nil && !(extra?.isEmpty)!) {
rescopes.addObject(extra!)
}
に変身した
func restartLastSession(let extra_ : String?)
{
let rescopes = NSMutableArray(array: [ "restart" ])
if let extra = extra_ where !extra.isEmpty {
rescopes.addObject(extra)
}
迅速な本のオプションの章を読むことを許可しなかったEric Dのおかげで、これはEricのカルマに+10を貢献する規定なしで解決されたと思います;-)