このメソッドがあるとします:
- (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
}
}
前もって感謝します