0

Could someone please tell me what is Tabs when we do a po on an mutable attributed string ?

Screenshot

bob
  • 382
  • 2
  • 17

2 Answers2

1

If you look at the log you see that the tabs are related to NSParagraphStyle which has a tabStops property.

The NSTextTab objects, sorted by location, that define the tab stops for the paragraph style.

Wain
  • 118,658
  • 15
  • 128
  • 151
1

They are the tab stops set in the string's associated paragraph style. See NSParagraphStyle.

CRD
  • 52,522
  • 5
  • 70
  • 86