Guest User

Untitled

a guest
Jan 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. - (IBAction)capitalDButtonTwo:(id)sender {
  2. if ([capitalDResultLabelTwo text] == @"+") {
  3. [capitalDResultLabelTwo setText:@"0"];
  4. } else {
  5. [capitalDResultLabelTwo setText:@"+"];
  6. }
  7. }
  8.  
  9. - (IBAction)capitalDButtonTwo:(id)sender {
  10. if ([[capitalDResultLabelTwo text] isEqualToString:@"+"]) {
  11. [capitalDResultLabelTwo setText:@"0"];
  12. } else {
  13. [capitalDResultLabelTwo setText:@"+"];
  14. }
  15. }
Add Comment
Please, Sign In to add comment