Is it possible to restrict access to certain views within a native IOS app? For example, if a user authenticates against a web service from an iPad app, can that user then be restricted from seeing certain portions of the app based on their role? how does one go about this?
Share
Ask for a token from the web service. Hide objects and hide controls that would display objects or views if you don’t get the correct token back from the web service. You just can set the isHidden property of most any UI object to YES.