示例#1
0
 public void Initialize(BaseViewController viewController, UIView view, string id, FeedType type)
 {
     this.viewController = viewController;
     this.id             = id;
     this.type           = type;
     this.view           = view;
     if (this.view?.Superview != null)
     {
         this.view.RemoveFromSuperview();
     }
     SharedInitialize();
 }
示例#2
0
 public void Initialize(BaseViewController viewController)
 {
     this.viewController = viewController;
     SharedInitialize();
 }