我正在使用动态表视图。正如之前的回复(如何知道 UITableview 行号)中所建议的那样,我尝试使用 CGPoint。
CGPoint hitPoint = [sender convertPoint:CGPointZero toView:self.tableView];
NSIndexPath *hitIndex = [self.tableView indexPathForRowAtPoint:hitPoint];
我得到调试器错误
Undefined symbols for architecture i386:
"_CGPointZero", referenced from:
-[MessageTableViewController btnCall:] in MessageTableViewController.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
这是什么意思,不支持 i386 或者我需要以某种方式设置 GCPointZero?
谢谢!