我已经在swift项目中安装了cocoapods并通过它安装了TSMessage。没问题,但是当我尝试使用它时:
#import <TSMessages/TSMessage.h>
我收到错误:
使用未解析的标识符&#39; TSMessage&#39;
我在我的桥接标题中包含它: {{1}}
答案 0 :(得分:1)
实际上我终于在this article中找到了答案,您必须在文件顶部添加Console.WriteLine("Hello World");
FileStream fs = new FileStream("Test.txt", FileMode.Create);
// First, save the standard output.
TextWriter tmp = Console.Out;
StreamWriter sw = new StreamWriter(fs);
Console.SetOut(sw);
Console.WriteLine("Hello file");
Console.SetOut(tmp);
Console.WriteLine("Hello World");
sw.Close();