I have this code:
#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];
}
How can I put the title, artist ecc in a Tweet using this?
- (IBAction)sendMusicTweet:(id)sender {
TWTweetComposeViewController *tweetViewController = [[TWTweetComposeViewController alloc] init];
[self presentModalViewController:tweetViewController animated:YES];
}
感谢,我为这个世界带来了新的东西......: