I hope that someone can help me. I recently used a DialogViewController with no problems. I was able to load it with my data perfectly.
After enabling pull-to-refresh, I notice that activating pull-to-refresh by pulling on the table fires fine programmatically BUT after releasing the table I've found that it "moves" a few points up the screen. I have attached some files to display the issue.
I have used the tasky xamarin sample to display the issue I am having.
The ONLY modification I have made to tasky is adding the following to the Initialize method of the HomeScreen.cs file.
RefreshRequested += (object sender, EventArgs e) => { new UIAlertView("title", "message" , null, "ok", null).Show(); ReloadComplete(); };
Anybody have any clues as to why this would be?