前提・実現したいこと
計算アプリをつくり、アプリ起動時に前回の計算結果が残っているようにしたいです。例えばiPhoneの電卓アプリのようなものです。
発生している問題・エラーメッセージ
アプリをタスクキルすると前回の計算結果が消えてしまう。
該当のソースコード
c#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4using UnityEngine.UI; 5 6public class Main : MonoBehaviour 7{ 8 public Text Formula; 9 public Text Answer; 10 public Button[] bNumber; 11 public Button bAdd; 12 public Button bEqual; 13 public Button bClear; 14 15 // Start is called before the first frame update 16 void Start() 17 { 18 Formula.text = ""; 19 } 20 21 // Update is called once per frame 22 void Update() 23 { 24 25 } 26 27 public void InputNumber(Text number){ 28 Formula.text += number.text; 29 } 30 31 public void InputAdd(Text addButton) 32 { 33 if(Formula.text == "" || Formula.text.Contains("+")) 34 { 35 return; 36 } 37 38 Formula.text += addButton.text; 39 } 40 41 public void InputEqual(Text equal) 42 { 43 44 if (!Formula.text.Contains("+")) 45 { 46 return; 47 } 48 49 string[] inputString = Formula.text.Split('+'); 50 int leftNumber = int.Parse(inputString[0]); 51 int rightNumber = int.Parse(inputString[1]); 52 53 int quotient = leftNumber + rightNumber; 54 55 Answer.text = quotient.ToString(); 56 57 } 58 59 public void InputClear(Text equal){ 60 Formula.text = ""; 61 Answer.text = ""; 62 } 63} 64
試したこと
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー