Неправильная позиция панели получателей в MFMessageComposeViewController - PullRequest
0 голосов
/ 05 октября 2018

Я использую MFMessageComposeViewController в своих приложениях для отправки SMS.Однако я обнаружил, что позиция панели получателей неверна, и список получателей будет скрыт за панелью навигации.Как я могу сделать это правильно?Пожалуйста помоги.Спасибо.

Ниже приведен пример кода: -

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
  MFMessageComposeViewController *messageVC = [[MFMessageComposeViewController alloc] init];
        messageVC.edgesForExtendedLayout = UIRectEdgeNone;

        if([_strProductUrl length] >0)
        {
            messageVC.body = _strProductUrl;
            [[NSNotificationCenter defaultCenter]postNotificationName:@"smsProductDetails" object:nil];

        }

       if([_strEventUrl length] >0)
        {
            messageVC.body = _strEventUrl;
            [[NSNotificationCenter defaultCenter]postNotificationName:@"smsEventDetails" object:nil];

        }
        messageVC.messageComposeDelegate = self;
        messageVC.delegate = self;

        //Set Custom Navigation Bar in SMS
        UINavigationItem *navigationItem = [[[messageVC viewControllers] lastObject] navigationItem];
        [navigationItem setTitle:@"New Message"];


        UIButton* ButSign = [[UIButton alloc] initWithFrame:CGRectMake(0,0, 40,20)];
        [ButSign setTitle:@"Cancel" forState:UIControlStateNormal];
        [ButSign setTitleColor:ThemeDarkBlueColor forState:UIControlStateNormal];
        ButSign.titleLabel.font = [UIFont systemFontOfSize:15.0];

        [ButSign addTarget:self action:@selector(cancelButtonClick) forControlEvents:UIControlEventTouchUpInside];
        navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:ButSign];

        if(![MFMessageComposeViewController canSendText])
        {
            SCLAlertView *alert = [[SCLAlertView alloc] init];
            alert.customViewColor = ThemeRedColor;
            [alert showError:self title:@"Error" subTitle:@"Your device doesn't support SMS"
            closeButtonTitle:@"Done" duration:0.0f ];
            return;
        }

        [self presentViewController:messageVC animated:NO completion:NULL];
}

//Share link to SMS
- (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result
{
            NSLog(@"some code here");
}

enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...