I have tried using keyword .value to set my high pass cutoff frequency from a UISlider value but it comes up with error message "property 'value' not found on object of type 'PAEProcess'"
When i tried using no keyword after hPFilt.frequency then it comes up with error message "Semantic Issue: Assignment to readonly property"
Is there a suitable way to de-bug this issue as i have tried looking through all the PAEProcess, PAEFilterHighPass, PAEFilter headers to find an appropriate keyword but can't avoid some kind of error message or another.
else if (sender == self.highPassSlider)
{
// update high pass freq
PAEFilterHighPass* hPFilt = app.highPassFilters[self.editIndex];
hPFilt.frequency.??? = self.highPassSlider.value;
// update the info label
[self setInfo: [NSString stringWithFormat:@"Cutoff: %3.1f Hz", self.highPassSlider.value]];
}
hPFilt.frequency.input = [PAEConstant constantWithValue:self.highPassSlider.value];
--
You received this message because you are subscribed to the Google Groups "pl-nk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pl-nk+un...@googlegroups.com.
To post to this group, send email to pl...@googlegroups.com.
Visit this group at http://groups.google.com/group/pl-nk.
For more options, visit https://groups.google.com/d/optout.