So a few years back a guy found a way to hack inapp purchases. Apple released a class called "VerificationController"
that basically all you had to do was pass the transaction and it would validate it and then return yes or no if it was good.
At the time I had a server side verification already implemented, where the transaction would get sent to my server, get verified between the server and apple then return an encrypted block to unlock the feature from the purchase so I didn't need it.
But I want to have IAP in my new app and I don't want to have to go through all the work of updating my system to work now that things like UDIDs are no longer available to us.
Do still need to either validate on my server or use the VerificationController class or has the issue with IAP be resolved so I can just trust pruchases?