mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
35 lines
870 B
Objective-C
35 lines
870 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 <Foundation/Foundation.h>
|
|
|
|
#import "NativeViewController.h"
|
|
|
|
@interface NativeViewController ()
|
|
@property int counter;
|
|
@property (weak, nonatomic) IBOutlet UILabel* incrementLabel;
|
|
@end
|
|
|
|
@implementation NativeViewController
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
self.counter = 0;
|
|
}
|
|
|
|
- (IBAction)handleIncrement:(id)sender {
|
|
[self.delegate didTapIncrementButton];
|
|
}
|
|
|
|
- (void)didReceiveIncrement {
|
|
self.counter++;
|
|
|
|
NSString* text = [NSString stringWithFormat:@"Flutter button tapped %d %@.",
|
|
self.counter,
|
|
(self.counter == 1)? @"time" : @"times"];
|
|
self.incrementLabel.text = text;
|
|
}
|
|
|
|
@end
|