今天,我阅读并创建了大约10个与Core Data相关的项目。我终于完成了我所需要的,但是我不确定这种方法是否很好

我想根据用户设备lang更改图书标题,我将使用

let locale = NSLocale.preferredLanguages()[0] as! String


但首先要测试核心数据实施

核心数据设置



源代码

// Get the data from Core Data and change the book title base on the lang
func printBooks(){

    let request = NSFetchRequest(entityName: "Langs")
    let predicate: NSPredicate = NSPredicate(format: "lang==%@", "fr");

    request.returnsObjectsAsFaults = false;
    request.predicate = predicate;

    let result:NSArray = context.executeFetchRequest(request, error: nil)!;
    var frTitle: String!
    if(result.count > 0){

        for res in result {
            let resTmp = res as! NSManagedObject
            frTitle = resTmp.valueForKey("langTitle") as! String
        }

    } else {
        println("empty");
    }

    let requestTwo = NSFetchRequest(entityName: "Book")
    requestTwo.returnsObjectsAsFaults = false;

    let resultTwo:NSArray = context.executeFetchRequest(requestTwo, error: nil)!;
    if(resultTwo.count > 0){

        for res in resultTwo {
            let resTmpTwo = res as! NSManagedObject

            // rename the title
            resTmpTwo.setValue(frTitle, forKey: "title");
        }

        // add to NSArray
        entriesArray = resultTwo;

    } else {
        println("empty two");
    }


}

// Adds the new book with the fr version
func insertBook(){

    let appDel:AppDelegate = (UIApplication.sharedApplication().delegate as! AppDelegate)
    let context: NSManagedObjectContext = appDel.managedObjectContext!

    let newBook = NSEntityDescription.insertNewObjectForEntityForName("Book", inManagedObjectContext: context) as! DB.Book

    newBook.setValue("Sir Arthur Conan Doyle", forKey: "author")
    newBook.setValue("Sherlock Holmes", forKey: "title")

    let newLang = NSEntityDescription.insertNewObjectForEntityForName("Langs", inManagedObjectContext: context) as! DB.Langs

    newLang.setValue("fr", forKey: "lang")
    newLang.setValue("Sherlock Holmes fr - test", forKey: "langTitle")

     newBook.setValue(newLang, forKey: "lanBook")

    context.save(nil)

    println("Saved");

}


override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return self.entriesArray.count
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let cell = self.tableView.dequeueReusableCellWithIdentifier("cell_one", forIndexPath: indexPath) as! UITableViewCell
    let db = entriesArray[indexPath.row] as! NSManagedObject
    // result in the UITableView is: Sherlock Holmes fr - test
    cell.textLabel?.text = db.valueForKey("title") as? String

    return cell
}


该代码确实更改了书名,但可以做得更好。我不确定如何处理大量书籍。

任何知道如何完成的人,请耐心等待一段时间,并提供一些代码:)

还请原谅我英语不好。

最佳答案

您应该考虑在NSObjectModel上实现一个瞬态属性,例如“ langSpecificTitle”,这将从您的实际“ title”属性为您计算出来。理想情况下,要访问本地化的标题,您应该访问此属性,并且应该通过读取实际的“ title”属性来获取特定于语言的标题。

tutorial很好地解释了“瞬态”属性。

另请参见Apple documentation

希望这可以帮助。

关于swift - 使用核心数据进行本地化,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31195025/

10-14 02:34