forked from mirrors/linphone-iphone
xcode: fix ios10 build
This commit is contained in:
parent
ad2df04921
commit
dc06ac83e4
5 changed files with 11 additions and 4 deletions
|
|
@ -62,8 +62,8 @@
|
|||
else {
|
||||
CAAnimationDelegate *delegate = [[CAAnimationDelegate alloc] init];
|
||||
delegate.completion = completion;
|
||||
self.delegate = delegate;
|
||||
}
|
||||
self.delegate = (id<CAAnimationDelegate>)delegate;
|
||||
}
|
||||
}
|
||||
|
||||
- (void (^)(BOOL))completion
|
||||
|
|
@ -79,8 +79,8 @@
|
|||
else {
|
||||
CAAnimationDelegate *delegate = [[CAAnimationDelegate alloc] init];
|
||||
delegate.start = start;
|
||||
self.delegate = delegate;
|
||||
}
|
||||
self.delegate = (id<CAAnimationDelegate>)delegate;
|
||||
}
|
||||
}
|
||||
|
||||
- (void (^)(void))start
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@
|
|||
}
|
||||
|
||||
- (void)awakeFromNib {
|
||||
[super awakeFromNib];
|
||||
[self setup];
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@
|
|||
}
|
||||
|
||||
- (void)awakeFromNib {
|
||||
[super awakeFromNib];
|
||||
[self setup];
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@
|
|||
}
|
||||
|
||||
- (void)awakeFromNib {
|
||||
[super awakeFromNib];
|
||||
[self setup];
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -99,5 +99,9 @@
|
|||
</array>
|
||||
<key>UIViewControllerBasedStatusBarAppearance</key>
|
||||
<false/>
|
||||
<key>NSVoIPUsageDescription</key>
|
||||
<string>Make audio/video calls</string>
|
||||
<key>NSContactsUsageDescription</key>
|
||||
<string>Make calls with your friends</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue