小編給大家分享一下Unity如何實(shí)現(xiàn)登錄注冊(cè)時(shí)限制發(fā)送驗(yàn)證碼次數(shù)功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供大理州網(wǎng)站建設(shè)、大理州做網(wǎng)站、大理州網(wǎng)站設(shè)計(jì)、大理州網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、大理州企業(yè)網(wǎng)站模板建站服務(wù),十余年大理州做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
當(dāng)我們需要在Unity客戶端做一個(gè)限制功能,比如按鈕 (最好是發(fā)送驗(yàn)證碼按鈕)要求每天只能點(diǎn)擊三次,等到第二天又有三次機(jī)會(huì),這個(gè)過程不涉及到服務(wù)端消息,只涉及到本地存儲(chǔ),以下是我的解決方案:
直接上代碼:
using System.Collections;using System.Collections.Generic;using UnityEngine;using UnityEngine.UI;using UniRx;using System;using System.IO;using System.Text;using System.Globalization;public class RegisterPanel : MonoBehaviour { private LoginUIPanel mLoginUIPanel; StreamWriter writer; StreamReader reader; //本地存儲(chǔ)手機(jī)號(hào) private string set_phonenum; //同一個(gè)手機(jī)號(hào)碼使用次數(shù) private int useNum=1; FileInfo file; private Button btn_GetMsgCode;/**倒計(jì)時(shí) */ private Text txt_CountDownTimer; } private void Awake() { //獲取驗(yàn)證碼按鈕 btn_GetMsgCode = input_MsgCode.transform.Find("Btn_GetVerficationCode").GetComponent
以上是“Unity如何實(shí)現(xiàn)登錄注冊(cè)時(shí)限制發(fā)送驗(yàn)證碼次數(shù)功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)站題目:Unity如何實(shí)現(xiàn)登錄注冊(cè)時(shí)限制發(fā)送驗(yàn)證碼次數(shù)功能
分享路徑:
http://weahome.cn/article/ggisei.html