解决编译错误:Property 'value' not found on object of type '_strong id'

红色是出错的地方

- (IBAction)timeSliderValueChanged:(id)sender {
    self.currentTime = CMTimeMakeWithSeconds(sender.value, 1000);        
}


经过百度(嗯嗯,我上不了google这个女神啊,只好叫百度来一炮)

http://stackoverflow.com/questions/26863618/property-frame-not-found-on-object-of-type-strong-id

说 You need to tell the compiler that sender is, in fact, a UIButton:

改为:

- (IBAction)timeSliderValueChanged:(id)sender {

    UISlider *slider = sender;

    self.currentTime = CMTimeMakeWithSeconds(slider.value, 1000);

}

编译通过。

好吧,实质上这篇还是转载的。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值