2012-04-24 49 views
0

我能夠張貼到我的facebook牆上的代碼如下圖所示,但是,回車(換行符)沒有被尊重/允許在「 @消息「值。查看下面xcode中的錯誤。當我在行尾使用反斜線'\'來轉義換行符時,會發布帖子,但結果是不可讀的。張貼到facebook與多行消息,而不是短的1行

如何發佈多行內容的facebook內容?

更重要的是,我的實際原創內容中有html標記,例如粗體等等。有沒有辦法以任何形式發佈到Facebook上?

非常感謝。

菲爾

在看到圖像:https://skitch.com/aibkwik/8iuxt/fb4.xcodeproj-fb-viewcontroller.m

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys: 
           @"removed for privacy", @"app_id", 
           @"http://itunes.apple.com/us/app/golf-whiz/removed?ls=1&mt=8", @"link", 
           @"https://img.skitch.com/20120424-mauaru649ed4i4igqc8mtth6bh.png", @"picture", 
           @"Golf Whiz", @"name", 
           @"Check this out!", @"caption", 
           @"Summary Information\nSouth Riding GC\nShots fired: 13\nFarts cut: 10", @"description",nil]; 

    [facebook dialog:@"feed" andParams:params andDelegate:self]; 

進入這裏

回答

0

你的NSString在Xcode代碼應該只有一個行。要表示換行符,您應該使用\n。你正在尋找的信息是:

@"Summary Information\nSouth Riding GC\nShots fired: 13\nFarts cut: 10"; 

別人有這個問題,看來也許the second answerer在這裏找到了解決辦法。

+0

啊,我應該提到,我試過...獲得相同的換行結果,如下圖所示:https://skitch.com/aibkwik/8iu58/ios-simulator – phil 2012-04-24 22:15:38

+0

我已更新原始帖子到包括我正在使用的內容的來源列表。感謝您的幫助。 – phil 2012-04-24 22:17:18

+0

用鏈接 – 2012-04-24 22:50:38