0
- (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex
{
    forTweet = TRUE;
    switch(buttonIndex)
    {
            case 0:
            {
                TWTweetComposeViewController *tweetViewController = [[TWTweetComposeViewController alloc] init];

                // Set the initial tweet text. See the framework for additional properties that can be set.
                NSMutableString * twitterString = [displayString mutableCopy];
                [twitterString appendString: @" #LoviOtvet"];

                [tweetViewController setInitialText: twitterString];

                UIImage * imageAnswer = [self getImageFromURL: [self strToUrlConverter]];
                UIImage * imageLogo = [[UIImage alloc] initWithContentsOfFile: @"image.png"];

                [tweetViewController addImage: [self mergeImage:imageAnswer withImage:imageLogo strength:1]];


                break;
            }

追加した 。エラーはありませんが、機能していません。Facebookとデバイスへの保存が機能しています。ツイートしていません。なぜだめですか?

4

1 に答える 1

2

あなたの問題はこの行です:

UIImage * imageLogo = [[UIImage alloc] initWithContentsOfFile: @"image.png"];

この方法では、名前ではなくファイル パスを指定する必要があります。次の 2 つの選択肢があります。

UIImage * imageLogo = [UIImage imageNamed:]

または (バンドル内のファイルの場合):

NSString *path = [[NSBundle mainBundle] pathForResource:@"image" ofType:@"png"];
UIImage * imageLogo = [[UIImage alloc] initWithContentsOfFile:path];
于 2012-08-10T12:28:35.450 に答える