我想知道是否可以获得最后一个 UIButton 的原点 x,它是 UIScrollView 的子视图。
我试过这段代码,但它不起作用,因为如果我 NSLog 它的帧它返回 0:
-(void)myMethod
{
UIButton *lastButton = [[toggleScroll subviews]lastObject];
NSLog(@"Button frame %f", lastButton.frame.size.width);
NSLog(@"Button origin %f", lastButton.frame.origin.x);
}