I have the need to get Subscripting support using MonoTouch in order to avoid this errors
-[__NSArrayI objectAtIndexedSubscript:]: unrecognized selector sent to instance 0x8b293f0
How can I do this??
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Ok, after tons of trial and error and lot’s of Miguel de Icaza’s Help (Thanks a lot btw 🙂 ) I found a way to solve this
The lib I am binding uses Subscripting and I needed a way to get Subscripting working on iOS 4.3 or above since this feature is going to be supported not until iOS 6.
So the
Solutionis to Statically compile againstlibarclitewhich you can find on the following locations (tnx again Miguel)Just built a fat library using
lipoand added it to my binding project and voila.Alex