按钮保持消失

时间:2016-06-12 14:54:35

标签: ios iphone swift uibutton

我的应用程序基本上有一个开始屏幕,用户可以输入他们想要做多少运动代表。我用它作为我的最大变量,然后我有一个按钮激活一个计数器机制,它加起来最大值。当它等于最大值时,UI重置,我打算回到屏幕1。

我一直在处理这个问题超过一个小时,当点击者值=用户输入(最大值)时,我无法弄清楚为什么我的按钮不再出现。 我已将其编码为

<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:context="com.vvhvb.hesselfeenstra.vvheerenveenseboys.MainActivity" tools:showIn="@layout/activity_main"> <android.support.v4.widget.SwipeRefreshLayout android:id="@+id/swipeContainer" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior"> <android.support.v4.widget.NestedScrollView android:layout_width="match_parent" android:layout_height="match_parent"> <WebView android:id="@+id/webView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentEnd="true" android:layout_alignParentLeft="true" android:layout_alignParentRight="true" android:layout_alignParentStart="true" android:layout_alignParentTop="true" /> </android.support.v4.widget.NestedScrollView> </android.support.v4.widget.SwipeRefreshLayout> </RelativeLayout>

但按钮不会再出现。但它在一开始就出现了,所以根据我的知识,这不是一个视图控制器问题。

Images (Top One Is Without Button which Should be Present at the End of the Application) (Bottom One is What It Looks like as it Starts which I am trying to replicate at the End)

For Full Code

0 个答案:

没有答案