如何以单声道触摸取消注册课程

时间:2013-12-02 18:21:47

标签: xamarin.ios mono

在使用c#的monotouch中,我使用了上述类别之上的[Register("CpyRightCusTabVwCell")]。现在我想取消注册该课程。我如何使用C#进行单触操作?

using System;
using MonoTouch;
using MonoTouch.Foundation;
using MonoTouch.UIKit;
using System.Runtime.CompilerServices;
using System.Net.Mime;
using NUnitLite.Runner;

namespace egUniSBPersHlthCareManager
{

    [Register("CpyRightCusTabVwCell")]
    public partial class CpyRightCusTabVwCell : UITableViewCell
    {
        public CpyRightCusTabVwCell(IntPtr handel):base (handel)
        {

        }
        public CpyRightCusTabVwCell ()
        {
        }

    }

}

1 个答案:

答案 0 :(得分:4)

你不能。

班级注册终身(过程)。

相关问题