How to Create TableView in Objective-C (iOS 2020)

preview_player
Показать описание
In this video we will earn how to create a tableview in your app using objective-c. We will go over two examples, using just code and using a storyboard, to set our UITableView up.

#swift #tableview #objectivec

Рекомендации по теме
Комментарии
Автор

Easy to follow, great tutorial, more objective-c tutorials please

tahabaig
Автор

Thanks for the Simple and easy implementation Video..

vijayadhaschandran
Автор

Very much interested in objective- C !
keep tutorials coming.
Also create strong course on it.

rohitoznikam
Автор

Thank you so much. I hope you make more video Objective C tutorial <3

linhnguyenios
Автор

Very smooth tutorial, it's awesome

abdalrahmanaboujeeb
Автор

Great video! Wish to see more tutorials on Objective-C

phil_
Автор

More objective-c tutorials please and could u introduce with us what famous app are created in OC?

ZhouHaibo
Автор

I've subscribed only on the basis you do more Objective-C material. Deal? OK good. :P

richochet
Автор

Would love to see more on Objective-C. Also, would love see C and C++ being implemented with Swift.

jacobmercer
Автор

I got this error in the last part of the video: 'unable to dequeue a cell with identifier cell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'. So apparently you have to create a custom tableviewcell with identifier in the code.

pifeeder
Автор

Hi! can we create custom tableview in objective-c? Similar to Android you can create your own layout for a recycler view/list view

GuyLovesMakima
Автор

Do you have any videos on MVC? Something I been having trouble with.

shabba
Автор

I don’t have the objc option in big sur for Desktop or iOS apps . Only for command line :(

Fernando-vqmn
Автор

Sorry but this was not helpful to me at all. Seems to me like one would have to either be very familiar with doing the same thing in swift or at least know objective c pretty well since you don't explain the basic concepts and structure of the app. Most of the time you just speak out loud what you're typing.

matthiasmuller
Автор

You have to register class, not to check if it's nil or not
Seth like: [self.myTableView registerClass: UITableViewCell.self forCellReuseIdentifier: @"cell"];

xushnudkeldiboyev