假设我有这个方法:
- (void)placeView:(UIView*)theView withCenterIn:(CGPoint)centerPoint;
所以我通过视图和一个点到视图的中心。
但碰巧我不需要指定中心,只需要指定视图。
传递“nil”会导致错误。
请建议如何跳过通过中心点。
请记住,我需要像这样使用该方法:
- (void)placeView:(UIView*)theView withCenterIn:(CGPoint)centerPoint{
if(centerPoint == nil){//and I understand that it's a wrong comparison, as I cannot pass "nil" to CGPoint
//set a random center point
}
else{
//set that view to the specified point
}
}
提前致谢