Search Issue Tracker
Fixed in 2018.2.X
Fixed in 2018.1.X
Votes
0
Found in
5.3.4p5
Issue ID
793420
Regression
No
[iOS] iOS Trampoline extern "C" doesn't work with Objective C
Reproduction Steps:
1. Open "Case793420" project
2. Enter valid Player Settings > Automatic Signing TeamID
3. Enter valid Player Settings > Bundle Identifier
4. Build to iOS platform
5. Open the generated Xcode project in Xcode
6. Build the project in Xcode
7. Notice the compilation errors on two lines in UnityViewControllerBase+iOS.h
User suggested fix:
1. In Xcode, open the file UnityViewControllerBase+iOS.h
2. Replace the two lines with compilation errors with the code below
#ifdef __cplusplus
extern "C" {
#endif
void AddViewControllerRotationHandling(Class class_, IMP willRotateToInterfaceOrientation, IMP didRotateFromInterfaceOrientation, IMP viewWillTransitionToSize);
void AddViewControllerDefaultRotationHandling(Class class_);
#ifdef __cplusplus
}
#endif
Expected behaviour: Project builds correctly without any errors.
Reproduced on versions: Unity 2017.1.3f1, 2017.2.1p2, 2017.3.0p3, 2018.1.0b3
Reproduced on devices: iPhone 7 Plus iOS 10.3.2
Reproduced on Xcode 9.0
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- [Android][BiRP] Depth processing is handled incorrectly on certain Android devices when using 2 camera's
- [APV] Cancelling Display Dialog Error is thrown after Adaptive Probe Volumes tab is open in Lighting Window
- [APV] NullReferenceException is thrown when baking Adaptive Probe Volume for a Terrain with Non-GI Contributing Tree Prototypes and multiple APV objects with different LayerMasks are present on the scene
- Hands are not recognized when using Hololens 2
- "OnTriggerExit2D" is called before "OnTriggerEnter2D" when object is destroyed immediately
Add comment