[résolu]NSAttributedString et plist

cyranocyrano Membre
novembre 2010 modifié dans API AppKit #1
bonsoir,

peut t'on enregistrer dans une plist une NSAttributedString?

comment faire?

merci

Réponses

  • cyranocyrano Membre
    13:59 modifié #2
    désolé pour le bruit
    <br />&nbsp; &nbsp; &nbsp; &nbsp; NSAttributedString *comment = ....<br />&nbsp; &nbsp; &nbsp; &nbsp; .../...<br />	if([dictionary valueForKey:BCCommentKey]) {<br />		NSData *attributedStringData = [dictionary valueForKey:BCCommentKey];<br />		comment = [NSKeyedUnarchiver unarchiveObjectWithData:attributedStringData];<br />	}<br />
    


    et

    <br />	//encode the attributedString as NSData<br />	NSData* attributedStringData = [NSKeyedArchiver archivedDataWithRootObject:comment];<br />	[dict setValue:attributedStringData forKey:BCCommentKey];<br />
    


    ::)
  • DrakenDraken Membre
    13:59 modifié #3
    C'est sympa pour les débutants de donner la solution à  ton propre problème ! 

Connectez-vous ou Inscrivez-vous pour répondre.