我正在使用带有提升框架的 rubymotion 来开发我的第一个 iOS 应用程序。我有一个表格视图(在导航控制器内),点击表格单元格会打开带有加载本地 html 文件的 web 视图的新屏幕。问题是 Web 视图仅在我第一次加载时显示。当我返回(导航控制器)并再次点击任何单元格时,它会打开新屏幕,但不会显示 Web 视图。Web 视图委托方法被触发,因此它加载它,但我只看到黑屏(带导航栏)。
这是带有 Web 视图的屏幕的代码:
class XXXDetailScreen < ProMotion::Screen
attr_accessor :screen_title
def on_load
XXXDetailScreen.title = self.screen_title
@web_view = add_element UIWebView.alloc.initWithFrame(self.view.bounds)
@web_view.delegate = self
@web_view.scrollView.scrollEnabled = false
@web_view.scrollView.bounces = false
@web_view.loadRequest(NSURLRequest.requestWithURL(NSURL.fileURLWithPath(NSBundle.mainBundle.pathForResource('index', ofType: 'html', inDirectory: 'html'))))
end
def webView(inWeb, shouldStartLoadWithRequest: inRequest, navigationType: inType)
true
end
end
上面的屏幕使用以下代码打开:
def tableView(tableView, didSelectRowAtIndexPath: indexPath)
tableView.deselectRowAtIndexPath(indexPath, animated: true)
open GalleryDetailScreen.new(screen_title: @data[indexPath.row][:title]), hide_tab_bar: true
end
感谢您的任何建议