My question may be simple for some to answer, but I'm relatively new to Objective C and Xcode. So I have a UILabel and I am running an if statement asking if UILabel is equal to self.NSString then do ... Here is the code.
if (UILabel.text == self.NSString)
{
//Do Something here...
}
I'm wondering if this would work, or what I have to do in order for this to start working. Thanks in advance.