• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 如何只显示一次登录屏幕?

[复制链接]
菜鸟教程小白 发表于 2022-12-12 20:29:50 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

当用户首次打开应用程序时,我会显示登录屏幕。用户成功登录后,我在 NSUserDefaults 中存储了一个 session ID。然后下次用户打开应用程序时,我检查是否设置了 session ID。如果已设置,那么我不想显示登录屏幕。

所以第一次我想显示 main_controller,但是当用户在成功登录后第二次打开应用程序时,我想显示 test_controller.rb

问题

我应该在哪里控制这个流程?

我不确定如何在第二次打开应用程序时检查 session ID。

这是我的 app_delegate.rb

class AppDelegate
  attr_reader :window

  def application(application, didFinishLaunchingWithOptions:launchOptions)
    @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)

    main_controller = MainController.alloc.initWithNibName(nil, bundle: nil)
    @window.rootViewController = UINavigationController.alloc.initWithRootViewController(main_controller)

    @window.makeKeyAndVisible
    true
  end
end

main_controller.rb

class MainController < UIViewController
  def viewDidLoad
    super

    self.edgesForExtendedLayout = UIRectEdgeNone

    rmq.stylesheet = MainStylesheet
    init_nav
    rmq(self.view).apply_style :root_view

    @username = rmq.append(UITextField, :username).focus.get
    @password = rmq.append(UITextField, :password).focus.get
    @sessionId = NSUserDefaults.standardUserDefaults
    puts @sessionId["sessionId"]
    if @sessionId["sessionId"] == nil
      rmq.append(UIButton, :submit_button).on(:touch) do |sender|
        puts "pressed #{@username.text} #{@password.text}"
        login_user (@username.text, @password.text)
      end
    end
  end

  def login_user(uname, pwd)
      client = AFMotion::Client.build("http://localhost:9000/") do
        header "Accept", "application/json"
        header "Content-Type", "application/json"
        request_serializer :json
        response_serializer :json
      end

      client.post("user/signup", username: uname, password: pwd) do |result|
        @sessionId["sessionId"] = result.object["sessionId"]
      end
  end

  def init_nav
    self.title = "Main"
  end
end

最后是 test_controller.rb

class TestController < UIViewController

  def viewDidLoad
    super

    # Sets a top of 0 to be below the navigation control
    self.edgesForExtendedLayout = UIRectEdgeNone

    rmq.stylesheet = MainStylesheet
    init_nav
    rmq(self.view).apply_style :root_view

  end

  def init_nav
    self.title = "TEST"
  end
end



Best Answer-推荐答案


我认为您可以使用类似这样的某种辅助类

AuthManager.rb

class AuthManager
  attr_accessor :sessionId

  def self.instance
    Dispatch.once { @instance ||= new}
    @instance
  end

  def init
    @keychain = KeychainItemWrapper.alloc.initWithIdentifier('EthanApp', accessGroup: nil)
    self.sessionId = @keychain.objectForKey KSecAttrAccount
  end

  def need_login?
    return (self.sessionId.nil? || self.sessionId.empty?)
  end

  def login(username, password)
    client = AFMotion::Client.build('http://localhost:9000/') do
      header 'Accept', 'application/json'
      header 'Content-Type', 'application/json'
      request_serializer :json
      response_serializer :json
    end
    client.post('user/signup', username: uname, password: pwd) do |result|
      ap result
      ap result.object
      if result.success?
        @keychain.setObject result.object[:sessionId], forKey: KSecAttrAccount
      else
        App.alert('login failed: invalid username and/or password')
      end
    end
  end

  def logout
    @keychain.setObject nil, forKey: KSecAttrAccount
  end
end

将此添加到您的 app_delegate.rb

AuthManager.instance.init # initialize singleton object

main_controller.rb

# You can control your login screen by call this method
if AuthManager.instance.need_login?
  rmq.append(UIButton, :submit_button).on(:touch) do |sender|
      AuthManager.instance.login(username, password)
  end
else
  # Display TestController
end

关于ios - 如何只显示一次登录屏幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22461836/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap