Esempio n. 1
0
 static int getTableCellWithShowedDelegate(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         UITableView obj = (UITableView)ToLua.CheckObject <UITableView>(L, 1);
         UITableView.TableCellWithShowedDelegate o = obj.getTableCellWithShowedDelegate();
         ToLua.Push(L, o);
         return(1);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
Esempio n. 2
0
 static int setTableCellWithShowedDelegate(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 2);
         UITableView obj = (UITableView)ToLua.CheckObject <UITableView>(L, 1);
         UITableView.TableCellWithShowedDelegate arg0 = (UITableView.TableCellWithShowedDelegate)ToLua.CheckDelegate <UITableView.TableCellWithShowedDelegate>(L, 2);
         obj.setTableCellWithShowedDelegate(arg0);
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }