如何在用户操作后添加标签栏

时间:2016-06-21 07:18:02

标签: ios swift uinavigationcontroller swift2 uitabbarcontroller

我有一个应用程序,当用户没有登录时,不必显示任何标签。我面临许多与此功能有关的问题。首先,我在登录屏幕之后将视图嵌入到标签栏控制器中,除了实现登录功能外,一切都显示正常。因为它是异步调用,所以我必须等到凭据验证完毕。我无法在shouldPerformSegue方法或apple提供的任何其他方法中执行此操作,因为在异步内容完成之前您无法阻止主线程,因此必须完成segue在IbAction中编程:

@IBAction func doLogin(sender: AnyObject) {
    userIsLogged = false
     let apiCall = webApi()

    apiCall.callCheckIsUserLogged(nil, password : self.passwordField.text, email: self.mailField.text){ (ok) in
        if ok {
            if(userIsLogged == true){
                dispatch_async(dispatch_get_main_queue()) {
                    self.performSegueWithIdentifier("loginUser", sender: self)
                }
            }else {
                NSOperationQueue.mainQueue().addOperationWithBlock{
                    print("User not logged in")
                    self.alert.message = "Please enter valid credentials"
                    self.displayAlert()
                }
            }
        }
    }
}

但是这让我想到了另一个问题:在程序设计之后,我的标签栏控制器正在消失,阅读一段时间后,看起来避免这种情况的唯一方法就是将标签栏控制器嵌入到导航控制器中。所以我做到了,但现在,我遇到了许多新问题。首先,我有两个导航控制器,一个是在项目的最初阶段,另一个是我已经嵌入到标签栏控制器中的导航控制器。一张图片将比我的文字更好地说明这一点:

enter image description here

enter image description here

现在我有两个导航控制器,我不知道如何隐藏顶部控制器。已经尝试过:

self.navigationController?.navigationItem.hidesBackButton = true

但隐藏箭头,我需要隐藏另一个导航控制器。但是,当你想在项目中间添加一个嵌入到导航控制器中的tabBar控制器时,最好的办法就是看到这种情况的最佳方法。 谢谢大家

1 个答案:

答案 0 :(得分:0)

我想你可以采取另一种方法。使登录故事情节与您的应用故事情节截然不同。

为您的登录程序准备一个故事板,为您的家(或任何您喜欢的任何人)设置另一个故事板,并在 lv.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View view, final int position, long id) { myproductpercarton = (TextView) view.findViewById(R.id.txtorderamount); final String ssss =(String) ((TextView) view.findViewById(R.id.txtorderamount)).getText(); mytotalprice = (TextView) view.findViewById(R.id.txtprice); mm = (CheckBox) view.findViewById(R.id.mycheck); mm.setFocusableInTouchMode(true); mm.setFocusable(true); mm2 = (CheckBox) view.findViewById(R.id.mynewcheck); mm2.setFocusableInTouchMode(true); mm2.setFocusable(true); myorderprice = (EditText) view.findViewById(R.id.txtorderby); myorderprice.setFocusableInTouchMode(true); myorderprice.setFocusable(true); mycartonno = (EditText) view.findViewById(R.id.txtordercarton); mycartonno.setFocusableInTouchMode(true); mycartonno.setFocusable(true); myproductno = (EditText) view.findViewById(R.id.txtproduct); myproductno.setFocusableInTouchMode(true); myproductno.setFocusable(true); myproductno.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { String myprodpercart; map = (HashMap<String, String>) getListView().getItemAtPosition(position); HashMap<String, String> map2 = (HashMap<String, String>) getListView().getItemAtPosition(position); HashMap<String, String> map3 = (HashMap<String, String>) getListView().getItemAtPosition(position); double orderId4; double mycarton2; double mynewcart; double myprodno2; double mycartquantity; double mytotal; String mynoocarton; double mynoocarton44; int myprodno3; String temp=mycartonno.getText().toString(); String contents = mycartonno.getText().toString(); orderId4 = new Double(map.get(TAG_PRODUCTPERCARTON)); Log.d("MyOrderId :: ", String.valueOf(orderId4)); mycartonprice2 = map.get(TAG_PRODUCTPERCARTON2); Log.d("MyCartonPrice :: ", String.valueOf(mycartonprice2)); mynoocarton = mycartonno.getText().toString(); mynoocarton44 = new Double(mycartonno.getText().toString()); mycarton2 = new Double(mynoocarton); mynewcart = new Double(mycartonprice2); myprodno2 = new Double(orderId4 * mycarton2); myprodno3 = new Integer((int) myprodno2); mycartquantity = new Double(mycartonno.getText().toString()); Log.d("MyCartonNo :: ", mycartonno.getText().toString()); Log.d("MyCartonNo2 :: ",contents); mytotal = new Double(mycartquantity * mynewcart); String mynoocarton3 = String.valueOf(mynoocarton44); String total = String.valueOf(mytotal); String mm = String.valueOf(myprodno3); mycartonno.setText(mynoocarton3); myproductno.setText(mm); mytotalprice.setText(total); Toast.makeText(getActivity(), ssss + " " + mynewcart + "----" + mm + " " + total, Toast.LENGTH_SHORT).show(); } }); mydiscount = (EditText) view.findViewById(R.id.txtdiscount); mydiscount.setFocusableInTouchMode(true); mydiscount.setFocusable(true); } }); 中管理它们。

我就这样做了:

AppDelegate

将此代码放入方法(例如名为if /* user must log in */ { self.window?.rootViewController = loginStoryboard?.instantiateInitialViewController() self.window?.makeKeyAndVisible() } else { self.window?.rootViewController = homeStoryboard?instantiateInitialViewController() self.window?.makeKeyAndVisible() } )并在应用启动时或登录后调用。 (如果您愿意,也可以添加自定义动画)