Changer UITextField espace Réservé police

Je vais changer le texte de l'espace réservé de couleur avec le code suivant, mais lorsque j'essaie d'ajouter NSFontAttribute j'obtiens l'erreur du compilateur "too many arguments to method call, expect 2 have 3"

 UIColor *color = [UIColor blackColor];
        _nameField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"Your Name" attributes:@{NSForegroundColorAttributeName: color},@{NSFontAttributeName:@"Roboto-Bold"}]; 

Cela Fonctionne Bien:

 UIColor *color = [UIColor blackColor];
        _nameField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"Your Name" attributes:@{NSForegroundColorAttributeName: color}]; 
InformationsquelleAutor Bob Yousuk | 2013-08-15