Hello,
in MAUI how to get the memory that my APP taken in ios?
You could get the available memory by the following code:
var m = NSProcessInfo.ProcessInfo.PhysicalMemory;// available
var g = System.GC.GetTotalMemory(false);//total
For more details, you could see
GC.GetTotalMemory(Boolean) Method (System) | Microsoft Learn
physicalMemory | Apple Developer Documentation
Best Regards,
Wenyan Zhang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.