cipherz
cipherz

Reputation: 543

UIWebview embedded in UIScrollView

Before everyone says, "why are you using a uiscrollview in a uiwebview - the delegate methods will get confused" - let me say that I am creating an app whose content is HTML and am paging the content. My problem is that I am imbedding an HTML5 video in each of the pages that won't play for some reason:

Here is my snippet:

It will play in safari but not on my ipad or ipad simulator(4.2). Does the uiscrollview make a difference? Has anyone seen this before? I played the video from a static page on my ipad, but maybe the css is messing with it?

Thanks for any helpful suggestions... mark

Upvotes: 1

Views: 829

Answers (2)

itgiawa
itgiawa

Reputation: 1616

In xcode 4.3.1 create a new project. File -> New project -> Page-Based application. Drag and drop a UIWebView onto the storyboard.

Upvotes: 0

cipherz
cipherz

Reputation: 543

yes, after much headache I figured it out. I had

scrollView.delayContentTouches = YES;

Which meant that it would work but you had to hold the click for a second or so for the scrollview to figure out whether it was a swipe or not.

I also had a custom gesturerecognizer on the view that i wasn't using that took the event as well.

It worked if you held down the button for 3 seconds, but now it responds normally.

Upvotes: 1

Related Questions