文字在哪里?

时间:2016-06-02 06:23:50

标签: ios swift

在你投票之前,我没有找到任何看起来像这样的东西。

所以我制作了一些文本文件,每个文件都标有一个特定的数字(对应于该月的某一天)。每个文本文件都嵌入了一个引号。我有这样的情况,当在视图上按下按钮时,标有“历史”的标签会更改为该引用。

以下是代码:

@IBAction func UpdateHistorical(sender: AnyObject) {//step 1
    let a = NSCalendar.currentCalendar().component(.Day, fromDate: NSDate())
    HistoricalLabel.text = String(a)
    var n = ""
    n = String(a)
    let hImage = UIImage.init(named: n)
    HistoricalImage.image = hImage

 //Below is the part that matters above was to just give context

    let path = NSTemporaryDirectory()+"1.txt"

    let readFile = try? String(contentsOfFile: path, encoding: NSUTF8StringEncoding)

    HistoricalLabel.text = readFile

}

}

以下是该视图的图片: enter image description here

这是执行后视图的图像: enter image description here

我做错了什么?

1 个答案:

答案 0 :(得分:1)

标签没有消失,但你想设置空字符串。读取文本文件时,你得到空字符串。