I have this method :
我有这个方法:
- (void) voteResult: (NSString *)partyName votedNumber:(int)votedNumber
{
int *moreVotes;
moreVotes = 2000 - votedNumber;
_labelVoteResult.text = @"Currently, your party (%x) has %i votes. We need %i more votes to put %x on our list. Share to your Facebook or Twitter to get more votes from your downline or upline.", partyName, votedNumber, moreVotes, partyName;
}
- (void) voteR