这似乎是一个模糊的问题-但在我的UI中轻按一下,我得到的是“无法识别的选择器发送到实例”。堆栈跟踪确实不是很有帮助。通常,在Monodevelop中调试此内容的最佳方法是什么?任何建议都将非常有帮助。
最佳答案
罗尔夫的链接显示了正确的答案。
已更改:
CABasicAnimation scale_animation = CABasicAnimation.FromKeyPath("transform.scale");
至:
CABasicAnimation scale_animation = CABasicAnimation.FromKeyPath("transform");
谢谢!