Skip to content

Instantly share code, notes, and snippets.

@lipka
Last active August 29, 2015 13:57
Show Gist options
  • Save lipka/9429277 to your computer and use it in GitHub Desktop.
Save lipka/9429277 to your computer and use it in GitHub Desktop.
LinkAttributes on MonoTouch.TTTAttributedLabel
TTTAttributedLabel _notesLabel = new TTTAttributedLabel ();
NSMutableParagraphStyle paragraphStyle = new NSMutableParagraphStyle ();
paragraphStyle.Alignment = UITextAlignment.Center;
_notesLabel.LinkAttributes = new NSMutableDictionary () {
{ UIStringAttributeKey.ParagraphStyle, paragraphStyle },
{ UIStringAttributeKey.ForegroundColor, UIColor.Blue },
};
_notesLabel.ActiveLinkAttributes = new NSMutableDictionary () {
{ UIStringAttributeKey.ParagraphStyle, paragraphStyle },
{ UIStringAttributeKey.ForegroundColor, UIColor.Green },
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment