Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 845c504

Browse files
committed
self
1 parent 3f40adb commit 845c504

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

testing/scenario_app/ios/Scenarios/Scenarios/TextPlatformView.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ - (instancetype)initWithFrame:(CGRect)frame
7575
viewIdentifier:(int64_t)viewId
7676
arguments:(id _Nullable)args
7777
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger {
78-
if ([super init]) {
78+
self = [super init];
79+
if (self) {
7980
_containerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 250, 100)];
8081
_containerView.backgroundColor = UIColor.lightGrayColor;
8182
_containerView.clipsToBounds = YES;

0 commit comments

Comments
 (0)