我在工具栏中有一个按钮。我如何抓住它的框架?做UIBarButtonItem不是有一个frame属性?
UIBarButtonItem
frame
试试这个;
UIBarButtonItem *item = ... ; UIView *view = [item valueForKey:@"view"]; CGFloat width; if(view){ width=[view frame].size.width; } else{ width=(CGFloat)0.0 ; }