码迷,mamicode.com
首页 > Windows程序 > 详细

Xamarin迁移到 Unified API 注意事项

时间:2014-12-12 01:15:02      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   ar   color   os   sp   for   

参考官方文档:

Migrating to Unified API for Components

 

#if __UNIFIED__
...

// Mappings Unified CoreGraphic classes to MonoTouch classes
using RectangleF = global::CoreGraphics.CGRect;
using SizeF = global::CoreGraphics.CGSize;
using PointF = global::CoreGraphics.CGPoint;
#else
...

// Mappings Unified types to MonoTouch types
using nfloat = global::System.Single;
using nint = global::System.Int32;
using nuint = global::System.UInt32;
#endif

 

Xamarin迁移到 Unified API 注意事项

标签:des   style   blog   http   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/jimcheng/p/4147058.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!