Arti
Arti

Reputation: 7772

Create in app settings

In my app i have a Settings page, where user can set some settings with different logic. The question: how to create settings like standard device settings:

enter image description here

I guess it is a table view. But should i configure each table row and create another views for each row ? Or there is a default widget to configure settings ? Because i did my settings like this:

enter image description here

And do all logic manually :(

Upvotes: 0

Views: 74

Answers (1)

Antoine
Antoine

Reputation: 1149

The settings in the "official" app is composed of a UITableView but with static cells. Each row is configured manually and separately.

Note : To have static cells, you have to create a UITableViewController instance.

Upvotes: 1

Related Questions