web-dev-qa-db-ja.com

Initメソッドの記述方法Swift

initSwiftメソッドを記述したいのですが、ここではObjective-CNSObjectモデルクラスを指定しました

-(id)initWithNewsDictionary:(NSDictionary *)dictionary
{
    self = [super init];
    if (self) {
        self.title           = dictionary[@"title"];
        self.shortDescription = dictionary[@"description"];
        self.newsDescription = dictionary[@"content:encoded"];
        self.link            = dictionary[@"link"];
        self.pubDate         = [self getDate:dictionary[@"pubDate"]];

    }
    return self;
}

このメソッドをSwiftで書くにはどうすればよいですか?

28
Vineesh TP

それはあなたのクラスの良い基盤になると思います。

_class MyClass {

    // you may need to set the proper types in accordance with your dictionarty's content
    var title: String?
    var shortDescription: String?
    var newsDescription: String?
    var link: NSURL?
    var pubDate: NSDate?

    //

    init () {
        // uncomment this line if your class has been inherited from any other class
        //super.init()
    }

    //

    convenience init(_ dictionary: Dictionary<String, AnyObject>) {
        self.init()

        title = dictionary["title"] as? NSString
        shortDescription = dictionary["shortDescription"] as? NSString
        newsDescription = dictionary["newsDescription"] as? NSString
        link = dictionary["link"] as? NSURL
        pubDate = self.getDate(dictionary["pubDate"])

    }

    //

    func getDate(object: AnyObject?) -> NSDate? {
        // parse the object as a date here and replace the next line for your wish...
        return object as? NSDate
    }

}
_

アドバンストモード

プロジェクトのキーをコピーアンドペーストすることを避けたいので、可能なキーを例えば次のようなenum

_enum MyKeys : Int {
    case KeyTitle, KeyShortDescription, KeyNewsDescription, KeyLink, KeyPubDate
    func toKey() -> String! {
        switch self {
        case .KeyLink:
            return "title"
        case .KeyNewsDescription:
            return "newsDescription"
        case .KeyPubDate:
            return "pubDate"
        case .KeyShortDescription:
            return "shortDescription"
        case .KeyTitle:
            return "title"
        default:
            return ""
        }
    }
}
_

convenience init(...)メソッドを改善することができますこれにより、将来、コード内のキーのタイプミスを回避できます。

_convenience init(_ dictionary: Dictionary<String, AnyObject>) {
    self.init()

    title = dictionary[MyKeys.KeyTitle.toKey()] as? NSString
    shortDescription = dictionary[MyKeys.KeyShortDescription.toKey()] as? NSString
    newsDescription = dictionary[MyKeys.KeyNewsDescription.toKey()] as? NSString
    link = dictionary[MyKeys.KeyLink.toKey()] as? NSURL
    pubDate = self.getDate(dictionary[MyKeys.KeyPubDate.toKey()])

}
_

注:それはあなたがそれを行う方法の生のアイデアであり、便利なイニシャライザを使用する必要はまったくありませんが、最終クラスについて何も知らないという点で明らかな選択に見えました-あなたは共有しています1つのメソッドのみ。

64
holex
class myClass {
    var text: String
    var response: String?

    init(text: String) {
        self.text = text
    }
}

Swift:Initialization を参照してください(次回は自分でgoogleする方が良いでしょう。)

10
Shai

他のクラスからこのメソッドを呼び出す必要はありません。自動的に呼び出されます

override init()
    {
        super.init()
         //synthesize.delegate = self
       // println("my array elements are \(readingData)")

    }
6
abdul sathar

試してください:

initWithDictionary(dictionary : NSDictionary) {

   init()

   self.title = ... etc

}

ソース

1
CW0007007