How to parse JSON loaded as a stream in Swift? The stream gives incomplete JSON data every time. This is due to the fact that I have to load MBs of data, the main component of which is a long array of objects, and I do not want the user to wait until I get the full data. Is it possible to parse JSON data sequentially during streaming? Basically, something like Jackson permits on Android, or to implement Parser YAJLiOS for Swift
json ios stream parsing swift
vj9
source share