Method To Delete 2nd Label, Then First Label, Not Functioning Correctly

后端 未结 4 2037
心在旅途
心在旅途 2021-01-25 11:21

I know I am missing something obvious, but I just cannot see it. This method is meant to compare the text of a label to the text of a text box, and then delete the text. So if t

4条回答
  •  执笔经年
    2021-01-25 11:42

    To compare NSStrings use:

    if ([myString1 isEqualToString:myString2])
    

    Documentation

提交回复
热议问题