Devin Doty

Results 10 comments of Devin Doty

An EGOPhoto object can take file URL's, you should store the image to disk after the user selects it, then pass the URL to the photo source. As far as...

Can you show the code you're using to setup the table view and table view header?

The view is there, just the frame is a bit off. Initialization should look like this. EGORefreshTableHeaderView *view = [[EGORefreshTableHeaderView alloc] initWithFrame:CGRectMake(0.0f, -60.0f, 320.0f, 60.0ft)]; It should also get added...

Minimum OS is 3.2, however most of the checks for 3.x are already there, and it shouldn't be too difficult at all to get up and running.

Sounds like the caption view isn't hiding all the way, you're showing the photoviewer inside a UITabBarController? is the tab bar hidden using hidesBottomBarWhenPushed? Also what OS is occurring on?

Thanks Jomnius, definitely useful. Since we're only using each string once, hardcoding instead of storing in memory is preferred in this case :)

I pushed the latest version, which should take care of those issues. If not please let me know. Devin

Yep you're definitely right. It should have been checking the navigation controller view hierarchy for the popover. The latest revision should fix that :)

Thanks! Both of those should be fixed with the revision I just pushed. In regards to the first one, I added an observer to the photo view controllers contentSizeForViewInPopover:, if...