I need to pass UITextField data to a UILabel at that same time a text is entered into a textfield.
Ex: If I type in "$10." in the textfield, it should instantly show up on the UILabel without pressing any button.
Essentially I want the price to be "$10.55", but you know what I mean.
@property (weak, nonatomic) IBOutlet UITextField *PriceTextField;
@property (nonatomic, strong) NSString *PriceString;
@property (strong, nonatomic) IBOutlet UILabel *PriceLabel;