我不能为我的生活弄清楚如何将其翻译成MonoTouch.任何接受者?
for(UIView* view in cell.subviews)
{
if([[[view class] description] isEqualToString:@"UITableViewCellReorderControl"])
{
}
}
Run Code Online (Sandbox Code Playgroud)
大多数是视图类描述,让我难过......
尝试调用需要参数的方法以获取结果并传递结果以继续.但我是Task领域的新手,似乎无法弄清楚正确的语法.任何帮助,将不胜感激.
Task.Factory.StartNew(() =>
CheckConflict(startDate, endDate, actID, repeatRule,whichTime))
.ContinueWith(
GetConflictDelegate(result),
TaskScheduler.FromCurrentSynchronizationContext);
Run Code Online (Sandbox Code Playgroud)