我在 MonoTouch 中有一个 UIViewController,与 .xib 一起定义为 iPad 视图控制器。
如果我将 UIViewController 更改为使用这样的动态类型:
public partial class CustomCount : UIViewController<tUnit> where tUnit : struct
{
private tUnit someVariable;
... (rest of class goes here) ...
然后,monoTouch 似乎不再在它的 xCode 项目中为此视图控制器生成相应的 .h 和 .m 文件。
因此,我无法再访问任何 UI 插座(因为它们在 .m 文件中定义)
如果我删除tTUnit
动态类型,一切正常。
该where tUnit : struct
部分对 MonoTouch 没有任何影响。
是否有任何已知的解决方案,或者我应该为我期望的每种类型创建我的班级的单独版本?