1
00:00:07,120 --> 00:00:10,340
Everybody what's going on this is Caleb with Deb's Loeb's dot com.

2
00:00:10,360 --> 00:00:15,400
And in this video we're going to create our X code project and we're going to set up some groups to

3
00:00:15,430 --> 00:00:18,920
organize things like model view controller et cetera et cetera.

4
00:00:19,060 --> 00:00:20,990
So go ahead and open X code.

5
00:00:21,010 --> 00:00:25,250
Pull it up here and go ahead and click Create new X code project.

6
00:00:25,510 --> 00:00:29,210
All right so go ahead and choose single view application.

7
00:00:29,290 --> 00:00:31,630
Go ahead and name it whatever you want.

8
00:00:31,630 --> 00:00:37,910
I'm going to name this touchy feely goodness just for fun.

9
00:00:38,330 --> 00:00:40,560
And go ahead and click next.

10
00:00:40,780 --> 00:00:42,280
Save it wherever you want.

11
00:00:42,280 --> 00:00:44,830
I'm going to save mine and my documents.

12
00:00:44,940 --> 00:00:48,610
Slopes courses Touch ID and source code.

13
00:00:48,670 --> 00:00:49,520
Boom.

14
00:00:49,570 --> 00:00:55,570
You can save wherever though and go ahead and pull open that in full screen so you can see the whole

15
00:00:55,660 --> 00:00:56,750
thing.

16
00:00:56,800 --> 00:00:59,220
And yeah our project now created.

17
00:00:59,230 --> 00:01:05,320
But we're going to create some groups to hold our model view and controller layers.

18
00:01:05,320 --> 00:01:10,090
So go ahead and right click on touchy feely goodness click new group and I'm going to create one for

19
00:01:10,090 --> 00:01:13,260
the controller first.

20
00:01:14,200 --> 00:01:15,520
I'm going to go ahead and do that again.

21
00:01:15,520 --> 00:01:17,490
New group for The View.

22
00:01:17,910 --> 00:01:21,450
And we're going to create a new group for the model.

23
00:01:21,450 --> 00:01:21,960
All right.

24
00:01:22,860 --> 00:01:24,800
So that's cool.

25
00:01:24,840 --> 00:01:30,630
You know eventually we're going to need some enumerations and some helper functions.

26
00:01:30,660 --> 00:01:33,540
So I'm going to go ahead and just right click and I'll create those now.

27
00:01:33,780 --> 00:01:40,690
So we'll create an enemy folder for our enumerations and we'll create a group for our helpers as well.

28
00:01:40,710 --> 00:01:48,450
We could also say utilities but whatever helper's is fine go ahead and drag your controller file into

29
00:01:48,450 --> 00:01:53,870
the controller folder and you know what let's think what else do we need to do.

30
00:01:54,090 --> 00:01:56,010
We have our project made.

31
00:01:56,010 --> 00:02:00,410
We have our folders set up for all of the different code files we're gonna be creating.

32
00:02:00,720 --> 00:02:01,690
And you know what guys.

33
00:02:01,950 --> 00:02:06,600
I think we're ready to start building out our app interface this was a really simple video just to create

34
00:02:06,600 --> 00:02:07,590
the project.

35
00:02:07,590 --> 00:02:09,890
So in the next one we're going to go ahead and build out.

36
00:02:09,900 --> 00:02:16,140
Note Visi which is the home screen that has a table view it has the navigation controller and that's

37
00:02:16,140 --> 00:02:18,980
where we're going to actually see our table view of notes.

38
00:02:19,020 --> 00:02:23,670
So let's go ahead and head over to the next video and let's start building that out right here in Interface

39
00:02:23,670 --> 00:02:24,060
Builder.
