Excellent! How clear you explain everything! I thought XCode was hard and confusing..! Thanks for the tutorials. Please help us by creating more tutorials.
Great tutorial. Much of the language is more accessible than the heavier Apple language. ... Also, there were no 'ums' and 'ahs' during the tutorial. Off to find part 2 of 2 now. Thanks. stillspangle
BRILLIANT! Genius! Just what I was looking for all this time. Explains exceptionally well, better than a lecturer at university. Thanks so much and god bless! Keep these tutorials coming.
Hi There. If I understand you correctly, it sounds like you want to nest more table views? That's no problem at all. You basically follow what I did and then keep adding more detail views. So your first VC would have a table view when you tap that row it would load a detail view with another table view and on and on. Let me know if that doesnt make sense!
Hey Vishal, Friendly advice, if you copy and paste large amounts of code could you add a link to a txt file that contains the code you use so that others can follow along. Thanks.
Hola. It is also possible to load a view controller modally (I actually have a tutorial on the same on my channel) BUT you should probably consider using a UINavigationController for your app. I have a video that shows how you can use the same - Remember that just like you do a Table View > Detail View, you can also do a Table View 1 > Table View 2 > Detail View. Same exact process.You implement all of the Table View code in the Table View 2 View Controller and then simply push the detail view
Thanks for this tutorial. I was looking at tutorials that used the master detail template provided by Apple and just got confused as hell. In fact this has been the first Xcode tutorial that hasn't confused me! Even tho I'm using swift this all made perfect sense once I'd figured out to use the Cocoa Touch class.
I also have a problem with the "return cell;" after the accessoryType and the "cell = UITableView alloc...". It is saying that they are incompatible pointer types, which I don't know about. FYI, all of these problems are in the part where you copied and pasted the code towards the end of the video. Thank you!
I liked the video. I changed the uitableviewcell to be a custom cell. I liked the speed of assembly using the story board to create the master detail app. Will you create an video showing how to use the storyboard to create a UISplitscreen application like Facebook?
Xcode Is not loading the various default methods that come with UITableViewController (or any others for that matter). Could you suggest a way to fix that? Is it an issue with xcode or are my settings wrong? or am I just doing something else wrong entirely? Thanks!! Awesome video!!
Hi Jack - I am reconsidering my earlier position about not providing the code and plan to make all of the code for these tutorials accessible via my site. For now, just PM me. Thanks for taking the time to write.
Hi, I really like this tutorial. I especially like that you don't start with the Master Detail project and instead do it from scratch from single view. Very helpful. I'm running into a snag though with xcode 6.1. They've done it so that when I create a UITableViewController it is empty. I don't know how to tell the latest xcode that I want the basic stuff handled in the file that gets created. It appears that they have changed the new file creation path and I can't figure out how to get it to fill in some of the methods after new file creation. Do you know how to resolve this in the latest xcode?
Hi Vishal, How do I approach if I want to have one or more category selections before master/detail? For example I select "Empire Strikes Back" > "Rebel Forces" > "Yoda" > Detail. Thanks!
hello bro its me again lol uno how u used a detail view controller? well instead i wana use another table view after the first table view and then use a detail view... what connection do i use to connect both table views? do i still use push? or whats the exact differnce between push model and custom? sorry if thats a dumb question haha im not sure if i have to embed with a nav controller again for the second view controller to be linked with the first.. thanks in advance
hmm really wish I could download this source code to figure out what I did wrong could you message me a link to a link to download it possible that would awesome but no matter the point thank you for a amazing tutorial.
Hi, Vishal. I'm having a problem in the implementation file for TableViewController. It says that property textLabel is not found and the same with property accessoryType. Your help will be greatly appreciated!
Dear I make the same you do exactly but I face the same a problem I am using xocd 5 and this exception ( terminating with uncaught exception of type NSException) that is happen whan I cllick in the cell in table view but it open a black view (new one not the detaild I make) as and when I click in the bakc this exceptions is rising kindly help
{ cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; } cell.textLabel.text = [VocabWordList objectAtIndex:indexPath.row]; cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; return cell; I'm trying to make an app to study vocabulary so VocabWordList is the equivalent of characterList.
Excellent! How clear you explain everything! I thought XCode was hard and confusing..! Thanks for the tutorials. Please help us by creating more tutorials.
Great tutorial. Much of the language is more accessible than the heavier Apple language.
... Also, there were no 'ums' and 'ahs' during the tutorial. Off to find part 2 of 2 now.
Thanks.
stillspangle
That's great news. The a-ha moments are really important for all developers :)
BRILLIANT! Genius! Just what I was looking for all this time. Explains exceptionally well, better than a lecturer at university. Thanks so much and god bless! Keep these tutorials coming.
Thanks Dave. Yes, I have had other users ask for more Storyboard based apps. Let me see about scheduling a couple of those in.
Best Iphone tutorials....Ypu are awesome....Thnx sooo much....
Great tutorial man,
really easy to follow along.
Vishal, might as well teach for a lving, very crisp and concise presentation...u got another subscriber!
Hi There. If I understand you correctly, it sounds like you want to nest more table views? That's no problem at all. You basically follow what I did and then keep adding more detail views. So your first VC would have a table view when you tap that row it would load a detail view with another table view and on and on. Let me know if that doesnt make sense!
Hey Vishal, Friendly advice, if you copy and paste large amounts of code could you add a link to a txt file that contains the code you use so that others can follow along. Thanks.
Hola. It is also possible to load a view controller modally (I actually have a tutorial on the same on my channel) BUT you should probably consider using a UINavigationController for your app. I have a video that shows how you can use the same - Remember that just like you do a Table View > Detail View, you can also do a Table View 1 > Table View 2 > Detail View. Same exact process.You implement all of the Table View code in the Table View 2 View Controller and then simply push the detail view
Thanks for this tutorial. I was looking at tutorials that used the master detail template provided by Apple and just got confused as hell. In fact this has been the first Xcode tutorial that hasn't confused me! Even tho I'm using swift this all made perfect sense once I'd figured out to use the Cocoa Touch class.
This tutorial is simply awesome!
Thanks a lot!
Thanks Vishal ! awesome tutorial and like they way you explain. Just makes it quite easy.
Thanks for the kind words Darren!
I also have a problem with the "return cell;" after the accessoryType and the "cell = UITableView alloc...". It is saying that they are incompatible pointer types, which I don't know about.
FYI, all of these problems are in the part where you copied and pasted the code towards the end of the video.
Thank you!
thanx also i have the x code 5 and the code is differant now so do you thing you can make more tutorials on table veiws for x code 5
That sounds like exactly what I need. How does the second VC receive the row that was clicked on?
I liked the video. I changed the uitableviewcell to be a custom cell. I liked the speed of assembly using the story board to create the master detail app.
Will you create an video showing how to use the storyboard to create a UISplitscreen application like Facebook?
Xcode Is not loading the various default methods that come with UITableViewController (or any others for that matter). Could you suggest a way to fix that? Is it an issue with xcode or are my settings wrong? or am I just doing something else wrong entirely? Thanks!! Awesome video!!
Thanks a lot for the video. Very nice tutorial.
Hi Jack - I am reconsidering my earlier position about not providing the code and plan to make all of the code for these tutorials accessible via my site. For now, just PM me. Thanks for taking the time to write.
hey vishal do u have any recemendations on how to learn to make apps with objective c if ur in high school, like how to learn objective c
Its in the description - Make sure you expand it so you can see all of the text.
Hi Seong - Could you possibly post the code that you have in place.
Hi, I really like this tutorial. I especially like that you don't start with the Master Detail project and instead do it from scratch from single view. Very helpful. I'm running into a snag though with xcode 6.1. They've done it so that when I create a UITableViewController it is empty. I don't know how to tell the latest xcode that I want the basic stuff handled in the file that gets created. It appears that they have changed the new file creation path and I can't figure out how to get it to fill in some of the methods after new file creation. Do you know how to resolve this in the latest xcode?
actually I figured it out sorry. I wasn't choosing coco touch class. I was using coco which was causing the problem.
Hi Vishal,
How do I approach if I want to have one or more category selections before master/detail? For example I select "Empire Strikes Back" > "Rebel Forces" > "Yoda" > Detail. Thanks!
Hey could you do an iPad master detail app with the detailview changing to an array of words when you click on a list item in the masterview ?? Thanks
hello bro its me again lol
uno how u used a detail view controller? well instead i wana use another table view after the first table view and then use a detail view... what connection do i use to connect both table views? do i still use push? or whats the exact differnce between push model and custom? sorry if thats a dumb question haha im not sure if i have to embed with a nav controller again for the second view controller to be linked with the first.. thanks in advance
Thanks for the kind words athuman!
Good tutorial Vishal, thanks
hmm really wish I could download this source code to figure out what I did wrong could you message me a link to a link to download it possible that would awesome but no matter the point thank you for a amazing tutorial.
That would depend on what you include in your app
Did you end up resolving this issue? I havent had a chance to check messages for a little bit.
Hi, Vishal. I'm having a problem in the implementation file for TableViewController. It says that property textLabel is not found and the same with property accessoryType. Your help will be greatly appreciated!
Hi Vishal Kurup
Thanks for the awesome tutorial.
It seem that the link is broken i would like to copy everything you copy from the text file.
Thanks
How can I change the color of the static cells using storyboard? Thanks!
Before each TableView with segue need i a Navigation Controller?
tks
Thanks man, saved my day!
Dear I make the same you do exactly but I face the same a problem I am using xocd 5 and this exception ( terminating with uncaught exception of type NSException) that is happen whan I cllick in the cell in table view but it open a black view (new one not the detaild I make) as and when I click in the bakc this exceptions is rising kindly help
Can I use this for iPad also?
Hola! I have added a link to the video description. I am sure others are going to want the project files as well.
Thanks Prakash!
LOL. Thanks for the kind words!
tx! helped a lot
Sorry dear that is my problem acutly I add [self.navigation ...] toprepareForSegue too I delte it and every thing is become ok thanks again .
Glad you figured it out.
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = [VocabWordList objectAtIndex:indexPath.row];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
I'm trying to make an app to study vocabulary so VocabWordList is the equivalent of characterList.
how can i save the data ??
i dont see the link
Hahaha. That is very kind of you.
Hahahah. Ok. Let me see what I can do. Can you sort of describe exactly what you are trying to do.