0
私はこのコードを持っている:Twitterフレームワークを使用してTweetにカレントソングを実装する方法は?
#import <MediaPlayer/MediaPlayer.h>
-(IBAction)playingSong{
MPMediaItem *theSong = [[MPMusicPlayerController iPodMusicPlayer] nowPlayingItem];
NSString *theTitle = [song valueForProperty:MPMediaItemPropertyTitle];
NSString *theArtist = [song valueForProperty:MPMediaItemPropertyArtist];
NSString *nowPlaying = [NSString stringWithFormat:@"#NowPlaying %@ by %@", theTitle, theArtist];
tweetTextView.text = [NSString stringWithFormat:@"%@%@", nowPlaying, tweetTextView.text];
[self setChars];
}
私はこれを使用してさえずるタイトル、アーティストECCを置くことができますどのように?
- (IBAction)sendMusicTweet:(id)sender {
TWTweetComposeViewController *tweetViewController = [[TWTweetComposeViewController alloc] init];
[self presentModalViewController:tweetViewController animated:YES];
}
おかげで、私は...この世界に新たなんだ:)