import <Foundation/Foundation.h>
import"BMKAnnotation.h"
@interface BMKShape : NSObject <BMKAnnotation> {
@package
NSString *_title;
NSString *_subtitle;
}
I don’t convert the @package to .NET code!
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.
Apple ObjectiveC documentation about @package states:
In .NET world that’s public visibility in 32bits and internal visibility in 64bits.
Since iOS is 32bits you should bind those as @public fields (or not bind them at all since they are likely something that is not meant to be used outside of the provided package).