I can't tell you what the limit on the number of files is. But I have a proposal how you could implement your app.
Run an embedded HTTP Server on your iPad as part of your app, e.g. CocoaHTTPServer, and have it serve the tiles. The tiles themselves could be stored in a single ZIP file, which is never extracted. Instead, the HTTP server would extract single tiles on-the-fly when they are requested.
This approach doesn't require Wifi or mobile network access. And you can still use leaflet.js. Indeed, you hardly need to change your app except for adding the embedded HTTP server.