我最近完成了一个游戏,我想在启动器上创建一个新闻页面,它会从我的wordpress网站(https://unirig.wordpress.com/)获得最新帖子并将其显示在UIText和UIImage中,我听说过Unity中的WWW类,但我不知道如何在我的情况下使用它,我用C#编写代码。
非常感谢您的帮助!
答案 0 :(得分:1)
我听说过Unity中的WWW课程,但我不知道如何使用它 就我而言,我用C#编码。
你首先谷歌它。那里有很多例子。
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Override point for customization after application launch.
userIsLoggedIn()
return true
}
要打电话:
IEnumerator readPage(string pageUrl)
{
WWW www = new WWW(pageUrl);
yield return www;
Debug.Log(www.text);
}