mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This applies minor cosmetic cleanups noticed while landing fix/tests in another patch. Renames `incrementLabel` to `countLabel` and `setIncrementLabel` to `updateCountLabel`, since it's not setting it to a specific value but rather updating itself based on the current state of the `count` ivar. No tests since this patch introduces no semantic changes. Related: https://github.com/flutter/flutter/pull/132028
37 lines
947 B
Objective-C
37 lines
947 B
Objective-C
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#import "PlatformViewController.h"
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface PlatformViewController ()
|
|
@property(weak, nonatomic) IBOutlet UILabel* countLabel;
|
|
@end
|
|
|
|
@implementation PlatformViewController
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
[self updateCountLabelText];
|
|
}
|
|
|
|
- (IBAction)handleIncrement:(id)sender {
|
|
self.counter++;
|
|
[self updateCountLabelText];
|
|
}
|
|
|
|
- (IBAction)switchToFlutterView:(id)sender {
|
|
[self.delegate didUpdateCounter:self.counter];
|
|
[self dismissViewControllerAnimated:NO completion:nil];
|
|
}
|
|
|
|
- (void)updateCountLabelText {
|
|
NSString* text = [NSString stringWithFormat:@"Button tapped %d %@.", self.counter,
|
|
(self.counter == 1) ? @"time" : @"times"];
|
|
self.countLabel.text = text;
|
|
}
|
|
|
|
@end
|