¡@

Home 

2014/10/15 ¤U¤È 10:12:34

iphone Programming Glossary: phvolumepreviewcell

Horizontal UIScrollView inside a UITableViewCell

http://stackoverflow.com/questions/4324514/horizontal-uiscrollview-inside-a-uitableviewcell

UIPageControl. So I add my UIScrollView and my UIPageControl to my UITableViewCell just like that @implementation phVolumePreviewCell id init if self super initWithStyle UITableViewCellStyleDefault reuseIdentifier kVolumePreviewCellIdentifier self setAccessoryType.. for test purposes only I'll hide them later on . My problem is that I can scroll the whole UITableView containing this phVolumePreviewCell subclass of UITableViewCell but I can't scroll the UIScrollView. How can I achieve this The only information I found is.. touch the ScrollView. I believe I have to work out how to intercept touches on my TableView and if the touch is on the phVolumePreviewCell custom UITableViewCell subclass pass it to the cell instead of handling it on the TableView. For the record my TableView..