我想追加一个带有字符串的日期m_textdate.text = date有我当前的日期,我想用NSString * strRR = [NSString stringWithFormat:@"BibleApp_Notes_%@.html", title];
追加它我从上面的代码中得到BibleApp_Notes_genisis1.3.html .title是包含genisis1.3的字符串,我想要这样的手这个BibleApp_Notes_genisis1.3 [20/05/1986 08:07:08] .html,但是m_textdate.text与我有相同的日期格式,我只是想和我一起使用这个日期移动代码。
事先提前。
答案 0 :(得分:1)
尝试以下方法:
NSString * strRR = [NSString stringWithFormat:@"BibleApp_Notes_%@ [%@].html", title, m_textdate.text];