the method enumerateAttributesInRange gets a block of code and executes it for every attribute in NSAttributedString
- Does it call the bock asynchronously?
When The following method gets called twice in a row really quick 1 after the othr my app gets frozen, I am wondering of it's because enumerateAttributesInRange runs the block of code asynchronously, so 2 threads are trying to modify my AttributedString at the same time.
- (void) doSomething
{
//following line works fine
[self doSomethingwithAttributedString];
//following line works fine
[self doSomethingwithAttributedString];
[self performSelector:@selector(doSomethingwithAttributedString) withObject:nil afterDelay:1];
//following crashes
[self doSomethingwithAttributedString];
[self doSomethingwithAttributedString];
}
- (void)doSomethingwithAttributedString
{
[self.attributedString enumerateAttributesInRange:_selectedRange options:NSAttributedStringEnumerationLongestEffectiveRangeNotRequired usingBlock:
^(NSDictionary *attributes, NSRange range, BOOL *stop) {
// Here I modify the dictionary and add it back to my attributedString
}];
}