0

除了应用程序关闭时收到的消息外,我可以进行推送工作。

消息确实显示在通知中心,但仅在用户逐个单击实际消息时传递给应用程序。

有谁知道是否有办法使用 Rhomobile 从通知中心获取所有消息?

4

1 回答 1

0

对于任何有兴趣的人,

找不到从 iOS 通知中心检索通知的方法,因此我执行了以下操作:

添加到 application.rb

def on_activate_app 
    # Had to do this for iOS not getting all the messages from Notification Center 
    Rho::Timer.start(100, "/app/Settings/check_for_pending_friends", "nil") 
    super 
end

然后在 Settings 文件夹中的 controller.rb 中

def check_for_pending_friends 
  person = Person.find(:first) 
  url = "http://my_app.com/users/#{person.remote_id}/pending_msgs 
  # which looks for any msgs sent to that person with read_at = nil from server 
  Rho::AsyncHttp.get( 
     :url => url, 
     :headers => {'User-Agent' => Rho::RhoConfig.user_agent}, 
     :callback => url_for(:action => :see_if_pending_messages_callback) 
   ) if person 
end 

def see_if_pending_messages_callback 
  # Check to see if msg does not already exist in device, if not then add it 
end
于 2011-12-23T12:10:39.533 回答