0

我正在使用带有提升框架的 ruby​​motion 来开发我的第一个 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

感谢您的任何建议

4

1 回答 1

1

我是 ProMotion 的创建者之一。通常最好使用该will_appear方法来设置视图元素,因为 on_load 通常会过早触发而无法获得正确的视图bounds。但是,如果您确实将其加载到其中,则will_appear需要确保只实例化一次 Web 视图(will_appear每次切换到该屏幕时都会触发)。

我将演示:

class XXXDetailScreen < ProMotion::Screen

  attr_accessor :screen_title

  def on_load
    XXXDetailScreen.title = self.screen_title
  end

  def will_appear
    add_element draw_web_view
  end

  def draw_web_view
    @web_view ||= begin
      v = UIWebView.alloc.initWithFrame(self.view.bounds)
      v.delegate = self
      v.scrollView.scrollEnabled = false
      v.scrollView.bounces = false

      v.loadRequest(NSURLRequest.requestWithURL(NSURL.fileURLWithPath(NSBundle.mainBundle.pathForResource('index', ofType: 'html', inDirectory: 'html'))))
      v
    end
  end

  def webView(inWeb, shouldStartLoadWithRequest: inRequest, navigationType: inType)
    true
  end
end

作为旁注,您真的不需要:screen_title访问器。只需在加载时执行此操作:

open GalleryDetailScreen.new(title: @data[indexPath.row][:title]), hide_tab_bar: true
于 2013-03-01T06:12:52.887 回答