当我使用ReactiveCocoa
时,我想观察tableView
的{{1}}框架,但是出现了问题:
__block CGRect tmp_rect;
[RACObserve(self, self.tableView.frame) subscribeNext:^(id x) {
NSLog(@"%@",x);
tmp_rect= (CGRect)x; // this line appear issue:
'Used type 'CGRect' (aka 'struct CGRect') where arithmetic or pointer type is required'
double width_radio = x.origin.x/[UIScreen mainScreen].bounds.size.width;
back_nav.alpha = 1 - width_radio;
}];
我不知道这个问题出现了什么。
答案 0 :(得分:2)
对象x是NSValue。
您需要从中解开CGRect。你不能只是施展它。
...试
tmp_rect = [x CGRectValue];