Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
12 Jun 22 - 14 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by seidensj · Jun 10, 2016 at 09:06 PM · iosxcodeurloverride

Override UnityAppController in iOS

I want to pass a parameter to an Unity iOS app via a URL using an iOS plugin. I have successfully passed a parameter via URL by adding/editing the following the UnityAppController in Xcode:

 - (void) callUnitySendMessage:(const char*)object Method:(const char*)method Parameter:(const char*)parameter
 {
     UnitySendMessage(object, method, parameter);
 }
 
 - (BOOL)application:(UIApplication*)application openURL:(NSURL*)url sourceApplication:(NSString*)sourceApplication annotation:(id)annotation
 {
 
   NSString* hostString = url.host;
     
     [self callUnitySendMessage:"NativeInterfaceReceiver"
                    Method:"TestThisFunction"
                 Parameter:hostString.UTF8String];
 
     NSMutableArray* keys    = [NSMutableArray arrayWithCapacity:3];
     NSMutableArray* values    = [NSMutableArray arrayWithCapacity:3];
 
     #define ADD_ITEM(item)    do{ if(item) {[keys addObject:@#item]; [values addObject:item];} }while(0)
 
     ADD_ITEM(url);
     ADD_ITEM(sourceApplication);
     ADD_ITEM(annotation);
 
     #undef ADD_ITEM
 
     NSDictionary* notifData = [NSDictionary dictionaryWithObjects:values forKeys:keys];
     AppController_SendNotificationWithArg(kUnityOnOpenURL, notifData);
     return YES;
 }


I’d prefer to do this via a Unity plugin so that I don’t have to edit anything in Xcode. I figure I should be able to do this by overriding this function with a subclass of UnityAppController called MyAppController under Plugins/iOS. But how do I get MyAppController to replace UnityAppController? This is what I have so far--not sure if I'm on the right track.

alt text alt text

myapph.png (52.7 kB)
myappmm.png (249.9 kB)
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by sokoloff06 · Oct 19, 2019 at 11:59 AM

Probably not relevant any longer, but in case someone is looking for an answer, here is a good article I found about the topic - https://answers.unity.com/questions/1200828/override-unityappcontroller-in-ios.html

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Koval_Ivan · Jan 11 at 04:11 PM 0
Share

The link is is to this same answer. Probably by mistake

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

6 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

AssetBundle won't download on iPad 0 Answers

What should be the options visible to me when doing an iOS build on Windows? 0 Answers

Xcode warnings: Potential leak of an object and Dead store 0 Answers

No matching function for call to 'OrientView' 1 Answer

App crashes as soon as splash screen is displayed(even just camera). 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges