Skip to content

Commit

Permalink
Fixed MacCatatalyst build #509
Browse files Browse the repository at this point in the history
  • Loading branch information
futuretap committed Oct 21, 2024
1 parent 700d7f2 commit cb414c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion InAppSettingsKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'InAppSettingsKit'
s.version = '3.8.1'
s.version = '3.8.2'
s.summary = 'This iPhone framework allows settings to be in-app in addition to being in the Settings app.'

s.description = <<-DESC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ - (void)loadView {
self.activityIndicatorView = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0, 0, 40, 20)];
self.activityIndicatorView.hidesWhenStopped = YES;
#if TARGET_OS_MACCATALYST || (defined(TARGET_OS_VISION) && TARGET_OS_VISION)
activityIndicatorView.activityIndicatorViewStyle = UIActivityIndicatorViewStyleMedium;
self.activityIndicatorView.activityIndicatorViewStyle = UIActivityIndicatorViewStyleMedium;
#else
if (@available(iOS 13.0, *)) {
self.activityIndicatorView.activityIndicatorViewStyle = UIActivityIndicatorViewStyleMedium;
Expand Down

0 comments on commit cb414c7

Please sign in to comment.