You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When parsing content of URL with URLParser, delegate won't notified when parsing wiil done.
This may cause crashes.
This issue can't be solved with this modifications:
1.Implement "-(void)parsingFinished" method of delegate class.
2.Add call to this method in "-(void)finishParsing" method of ElementParser class.
-(void)finishParsing
{
[delegate parsingFinished]; //my code
[self parseMoreWithPartial: NO];
[self closeAllTags];
}
Best wishes, Nikita Ivanyushchenko.
The text was updated successfully, but these errors were encountered:
When parsing content of URL with URLParser, delegate won't notified when parsing wiil done.
This may cause crashes.
This issue can't be solved with this modifications:
1.Implement "-(void)parsingFinished" method of delegate class.
2.Add call to this method in "-(void)finishParsing" method of ElementParser class.
-(void)finishParsing
{
[delegate parsingFinished]; //my code
[self parseMoreWithPartial: NO];
[self closeAllTags];
}
Best wishes, Nikita Ivanyushchenko.
The text was updated successfully, but these errors were encountered: