escoz / QuickDialog

QuickDialog - Quick and easy dialog screens for iOS
http://escoz.com/open-source/quickdialog
Other
3.08k stars 637 forks source link

UIRefreshControl problem #637

Open ventayol opened 10 years ago

ventayol commented 10 years ago

I'm using UIRefreshControl to allow pull to down refresh on QuickDialogs.

I use the following code:

UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
[refreshControl addTarget:self action:@selector(refreshVehicles:) forControlEvents:UIControlEventValueChanged];
[vc.quickDialogTableView addSubview:refreshControl];

Everything is working fine on iOS6 and XCode 4 but when I've tried to build the app using XCode 5 for iOS7 the refresh control is not shown.

Any idea why can happen?

renetik commented 9 years ago

Same problem, did you found solution ?