iOS Tutorial - Master Detail | Navigation Controller app using Storyboards - Part 1/2

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ม.ค. 2025

ความคิดเห็น • 54

  • @iluvuillkillu
    @iluvuillkillu 12 ปีที่แล้ว

    Excellent! How clear you explain everything! I thought XCode was hard and confusing..! Thanks for the tutorials. Please help us by creating more tutorials.

  • @dazandelea
    @dazandelea 11 ปีที่แล้ว

    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

  • @VishalKurup
    @VishalKurup  12 ปีที่แล้ว

    That's great news. The a-ha moments are really important for all developers :)

  • @marinaolhovsky4068
    @marinaolhovsky4068 11 ปีที่แล้ว +2

    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.

  • @VishalKurup
    @VishalKurup  12 ปีที่แล้ว

    Thanks Dave. Yes, I have had other users ask for more Storyboard based apps. Let me see about scheduling a couple of those in.

  • @aw2086
    @aw2086 12 ปีที่แล้ว

    Best Iphone tutorials....Ypu are awesome....Thnx sooo much....

  • @shaneparsons5418
    @shaneparsons5418 11 ปีที่แล้ว

    Great tutorial man,
    really easy to follow along.

  • @walidcoco
    @walidcoco 12 ปีที่แล้ว

    Vishal, might as well teach for a lving, very crisp and concise presentation...u got another subscriber!

  • @VishalKurup
    @VishalKurup  12 ปีที่แล้ว

    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!

  • @JackKwaak
    @JackKwaak 11 ปีที่แล้ว

    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.

  • @VishalKurup
    @VishalKurup  12 ปีที่แล้ว

    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

  • @andrewpaulhart
    @andrewpaulhart 9 ปีที่แล้ว

    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.

  • @innovatevz
    @innovatevz 11 ปีที่แล้ว

    This tutorial is simply awesome!
    Thanks a lot!

  • @dbiswas
    @dbiswas 11 ปีที่แล้ว +1

    Thanks Vishal ! awesome tutorial and like they way you explain. Just makes it quite easy.

  • @VishalKurup
    @VishalKurup  11 ปีที่แล้ว

    Thanks for the kind words Darren!

  • @annieko7976
    @annieko7976 12 ปีที่แล้ว

    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!

  • @miriamhendler1276
    @miriamhendler1276 11 ปีที่แล้ว

    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

  • @jevchance
    @jevchance 12 ปีที่แล้ว

    That sounds like exactly what I need. How does the second VC receive the row that was clicked on?

  • @Louise-ai-agent
    @Louise-ai-agent 12 ปีที่แล้ว

    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?

  • @AlexcForsyth
    @AlexcForsyth 12 ปีที่แล้ว

    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!!

  • @029prakash
    @029prakash 12 ปีที่แล้ว

    Thanks a lot for the video. Very nice tutorial.

  • @VishalKurup
    @VishalKurup  11 ปีที่แล้ว

    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.

  • @malmen6941
    @malmen6941 11 ปีที่แล้ว

    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

  • @VishalKurup
    @VishalKurup  11 ปีที่แล้ว

    Its in the description - Make sure you expand it so you can see all of the text.

  • @VishalKurup
    @VishalKurup  12 ปีที่แล้ว

    Hi Seong - Could you possibly post the code that you have in place.

  • @csartang
    @csartang 10 ปีที่แล้ว +1

    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?

    • @csartang
      @csartang 10 ปีที่แล้ว

      actually I figured it out sorry. I wasn't choosing coco touch class. I was using coco which was causing the problem.

  • @jevchance
    @jevchance 12 ปีที่แล้ว

    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!

  • @chadea306
    @chadea306 12 ปีที่แล้ว

    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

  • @TheLFCFAN2010
    @TheLFCFAN2010 12 ปีที่แล้ว

    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

  • @VishalKurup
    @VishalKurup  11 ปีที่แล้ว

    Thanks for the kind words athuman!

  • @ATHUMANKOMORA
    @ATHUMANKOMORA 11 ปีที่แล้ว

    Good tutorial Vishal, thanks

  • @LeetMedic873
    @LeetMedic873 12 ปีที่แล้ว

    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.

  • @VishalKurup
    @VishalKurup  12 ปีที่แล้ว

    That would depend on what you include in your app

  • @VishalKurup
    @VishalKurup  12 ปีที่แล้ว

    Did you end up resolving this issue? I havent had a chance to check messages for a little bit.

  • @annieko7976
    @annieko7976 12 ปีที่แล้ว

    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!

  • @andrejo309
    @andrejo309 10 ปีที่แล้ว

    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

  • @MrTNPT
    @MrTNPT 12 ปีที่แล้ว

    How can I change the color of the static cells using storyboard? Thanks!

  • @andremellow
    @andremellow 11 ปีที่แล้ว

    Before each TableView with segue need i a Navigation Controller?
    tks

  • @alancaetano968
    @alancaetano968 9 ปีที่แล้ว

    Thanks man, saved my day!

  • @mahmoudabdulfattah7294
    @mahmoudabdulfattah7294 11 ปีที่แล้ว

    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

  • @fozziethebear
    @fozziethebear 12 ปีที่แล้ว

    Can I use this for iPad also?

  • @VishalKurup
    @VishalKurup  11 ปีที่แล้ว

    Hola! I have added a link to the video description. I am sure others are going to want the project files as well.

  • @VishalKurup
    @VishalKurup  12 ปีที่แล้ว

    Thanks Prakash!

  • @VishalKurup
    @VishalKurup  12 ปีที่แล้ว

    LOL. Thanks for the kind words!

  • @ecapanema
    @ecapanema 11 ปีที่แล้ว

    tx! helped a lot

  • @mahmoudabdulfattah7294
    @mahmoudabdulfattah7294 11 ปีที่แล้ว

    Sorry dear that is my problem acutly I add [self.navigation ...] toprepareForSegue too I delte it and every thing is become ok thanks again .

    • @VishalKurup
      @VishalKurup  11 ปีที่แล้ว

      Glad you figured it out.

  • @annieko7976
    @annieko7976 12 ปีที่แล้ว

    {
    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.

  • @yossicohen9295
    @yossicohen9295 8 ปีที่แล้ว

    how can i save the data ??

  • @miriamhendler1276
    @miriamhendler1276 11 ปีที่แล้ว

    i dont see the link

  • @VishalKurup
    @VishalKurup  12 ปีที่แล้ว

    Hahaha. That is very kind of you.

  • @VishalKurup
    @VishalKurup  12 ปีที่แล้ว

    Hahahah. Ok. Let me see what I can do. Can you sort of describe exactly what you are trying to do.