Skip to content

Commit

Permalink
Fixed autoresizing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sp0x committed Aug 5, 2021
1 parent 72731c4 commit 45330c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion QueueITLib/IOSUtils.m
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ +(NSString*)getLibraryVersion{
}

+(NSString*)getSdkVersion{
return @"iOS-3.0.4";
return @"iOS-3.0.7";
}

@end
1 change: 1 addition & 0 deletions QueueITLib/QueueITWKViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ - (void)viewDidLoad {
WKWebView* view = [[WKWebView alloc]initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height) configuration:config];
view.navigationDelegate = self;
self.webView = view;
[self.webView setAutoresizingMask: UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth];
}

- (void)viewWillAppear:(BOOL)animated{
Expand Down

0 comments on commit 45330c4

Please sign in to comment.