Post

Replies

Boosts

Views

Activity

Reply to Is it possible somehow in iOS to prevent screen capture?
It is not possible to prevent screenshots and screen recording on iOS. And yet, ScreenShieldKit seems to have achieved this! That suggests, at the least, that it is very difficult, and there is no "simple" coding solution. I suggest that you investigate ScreenShieldKit, and see if their pricing model suits your needs (depending on how important this feature is, for your app).
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’21
Reply to "Network Link Conditioner" in "Additional Tools for Xcode 13" can not be loaded on Big Sur 11.6 (20G165)
Same issue here.   • macOS 11.6   • Xcode 13.0 (13A233) {from the App Store, not the RC}   Fresh download of "Additional Tools for Xcode 13" • From https://developer.apple.com/download/all/ Network Link Conditioner.prefPane installs, but on clicking it, I see the error: • "Preferences Error" • "Could not load Network Link Conditioner preference pane."
Sep ’21
Reply to Test Flight unavailable for testers, but available for account owner.
On TestFlight: Internal Testing • "App Store Connect Users" can test all builds, as soon as they are uploaded • (Actually, as soon as they have been "processed", which is usually very quick) • It's also possible to set up Test Groups, and assign specific builds to them (but they don't get anything automatically) • TestFlight Review is not required, for these testers External Testing • All builds must go through TestFlight Review, and be approved Which is your case? • It sounds like your "account owner" is getting the immediate "internal testing". • But how have your other testers been set up?
Sep ’21
Reply to [iOS 15]The tableView(_:numberOfRowsInSection:) is called before the numberOfSections(in tableView: UITableView)
You said: i just define the dataSource in the Class Are you also settings the tableView's datasource to this property? (It looks like you aren't) Otherwise... For both functions, zero is a valid return value... ...so that suggests there may be a problem with the property you are accessing? You said: my dataSource is empty It's not clear what you mean by this. If it's really empty, isn't a crash an appropriate response? • Are you sure that both methods are being called? • Have you checked the Int value that they return? • Are you checking to see that datasource[section] exists, before you reference it?!
Sep ’21