How to delete PHAsset permanently from device(“Photos”) in iOS SDK?

How to delete the PHAsset from device permanently to get more space on device immediately?

I could only find the following API to delete PHAsset from the Photos app which is moving the assets to "Recently Deleted" album which is still holding memory on the device,

Code Block
PHAssetChangeRequest.deleteAssets((assets as NSArray))

Is there a solution to delete assets (programmatically) from the Photos app permanently?