0

您好,我正在尝试从我的 iOS 应用程序发推文。

在 iOS5 中,我们可以使用Twitter Framework.

所以我写了下面的代码来发推文。

if([TWTweetComposeViewController canSendTweet]) {

        TWTweetComposeViewController *controller = [[TWTweetComposeViewController alloc] init];
        [controller setInitialText:self.txtView.text];
        controller.completionHandler = ^(TWTweetComposeViewControllerResult result)  {

            [self dismissModalViewControllerAnimated:YES];

            switch (result) {
                case TWTweetComposeViewControllerResultCancelled:
                    break;

                case TWTweetComposeViewControllerResultDone:
                    break;

                default:
                    break;
            }
        };

        [self presentModalViewController:controller animated:YES];
    }

我可以用上面的代码发推文。但我的应用程序中有我的自定义字体。

所以我的自定义字体推文就像下面的图片。

在此处输入图像描述

那么我可以更改字体TWTweetComposeViewController吗?如果可以,我该如何更改?

4

1 回答 1

0

不,您不能更改 TWTweetComposeViewController 的字体。

于 2013-07-11T20:14:41.857 回答