前天使用最新版的Xamarin Forms 4.4提交应用后,今天Apple审核返回信息如下:
Guideline 2.5.1 – Performance – Software Requirements

Your app uses or references the following non-public APIs:
– LinkPresentation.framework
– QuickLookThumbnailing.framework
The use of non-public APIs is not permitted on the App Store because it can lead to a poor user experience should these APIs change.
Continuing to use or conceal non-public APIs in future submissions of this app may result in the termination of your Apple Developer account, as well as removal of all associated apps from the App Store.
Next Steps
If you are using third-party libraries, please update to the most recent version of those libraries. If you do not have access to the libraries’ source, you may be able to search the compiled binary using the “strings” or “otool” command line tools. The “strings” tool can output a list of the methods that the library calls and “otool -ov” will output the Objective-C class structures and their defined methods. These tools can help you narrow down where the problematic code resides. You could also use the “nm” tool to verify if any third-party libraries are calling these APIs.

今天我来介绍一下XNA的另一个开源实现FNA。FNA与MonoGame的区别在于:FNA的跨平台是基于运行库的而MonoGame的跨平台是基于源码的,也就是说理论上FNA编译好的游戏不需要修改源码就可以运行在不同的硬件平台,而MonoGame需要将源码放到指定平台重新编译才能运行。

上一篇我谈到如何将《选老婆》发给朋友玩,这篇我来介绍一下如何将《选老婆》移植到通用Windows平台(UWP)。XNA本身并没有跨平台的能力,将游戏运行到其他平台必须安装MonoGame或者FNA,如何安装MonoGame?请点击

首先,选中【SelectWife】解决方案,点击右键【添加】【新建项目】