What should I use, UITableView or UICollectionView? [closed] - ios

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I want to make a Google+ type card list (the home page in the ios app) on iPhone. I am confused that, should I use a UITableView with custom cells or a single column UICollectionView with custom cells?
Edit: I am concerned about performance and ease of development. But I think I got my answer as
I found UITableViewCell to easy to customize and use.

I think UITableView would work better for you.
In order to use UITableView, your class should conform to the UITableViewDelegate Protocol.

Related

Which pattern is used to make the app look like [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
I am newbie in iOS development and making a app in swift. But I am confused what to use in the design to make look like it. Should I use table view or collection view.
I have attached the screenshot for same.
A collection view would be more appropriate. In addition, iOS 14 collection view enhancements suggest that Apple is very slowly phasing out table views completely, because it provides new kinds of collection view cells that emulate most kinds of table view cells.

How to make periodic table in objective-c? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to create an app that show periodic table but I don't know how to do that simply. one way i thought was UICollectionView but it is not good way. I want to know what can I search and look for.
Thank You !
I take it you're talking about the periodic table of elements?
A UICollectionView is indeed a good way. You should watch the keynote of the 2017 WWDC. They demonstrate that very thing using new features of UICollectionView added in iOS 11, but you could do it without those new features as well.

UITableViewCell Contact's app like [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
how can i create this kind of UITableViewCell where i can also set type of given string (for example email home, work, other)
I achieved something like this so far
You need to create a UITableViewCell subclass and add UI elements yourself (either in code or in interface builder).
There are a lot of tutorials out there about how to do that. (e.g. https://code.tutsplus.com/tutorials/ios-sdk-crafting-custom-uitableview-cells--mobile-15702)

What is that? Cell or Table? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I am finishing my first app adding an About Us section. I want to create something like this there:
I want to insert the FAQ and website link but what is that? Is a custom cell? a Table?
Now I am using a simple button but I think that the option in the picture is more.
It's probably something very simple, please help.
That is a simple grouped section in UITableView, though cell is more likely to be custom one.

What is the best way to create an iOS app with the Newsstand layout? CollectionViewController or just a ViewController? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I am trying to create an app that once opened it will have the same layout as the Newsstand app on iOS. I would like for it to have the ability to scroll up and down as the icons stay in their shelves. My question is this : Would it be better for me to do this with the a CollectionViewController or will a simple ViewController do the trick? I ask because I am not too experience with the CollectionViewController if any of you have some experience please chime in, if you have any sample code that would help out as well, thank you.
The collection view is designed for exactly this type of thing. Ray Wenderlich has a pretty good tutorial that shouldn't be too hard to adapt to your needs.

Resources