We are building this financial app and we need to implement thsi feature where app needs to send message for MSISDN varification. What we are doing here is in our MFMessageComposeViewController i am getting a object of private class CKSMSComposeController and using following two methods to disable these features
- (void)setCanEditRecipients:(BOOL)arg1;
- (void)setTextEntryContentsVisible:(BOOL)arg1;
We are working for a well know Telecom company and developing their mobile wallet solution so validating MSISDN is the most important part for information security
My question here is will apple reject my app if i use these methods ?
Regards