iOS 9 and Swift 2: From Beginner to Paid Professional | 08002 Working with POSTMAN
iOS 9 and Swift 2: From Beginner to Paid Professional | 08002 Working with POSTMAN
iOS 9 and Swift 2 developers are some of the highest paid coders throughout the planet right now. There couldn't be a better time to join the world of app development.
About this iOS 9 & Swift 2 Course
You are going to learn everything you need to know to be able to work professionally as a Jr. iOS 9 developer. Even if you aren't interested in a career change this course will give you the necessary skills to build and publish iPhone and iPad apps to the Apple App Store.
All concepts and apps built within this course are designed with careful purpose. You won't be learning some obscure concept just to learn that concept - you will learn the technologies and principles that actually matter when building professional applications.
You will learn Swift 2 and iOS 9.
Why Choose this iOS 9 & Swift 2 Course?
So many programming courses are built by people who are just looking to make a buck. They learn the coding skills literally right before they teach them! I am a professional iOS developer and have built 58 mobile apps to date with both Swift 2 and Objective-C. I also am a professional instructor at a coding bootcamp. I know what skills you will use in the industry (It is so important to learn Swift). I know how to help you learn. Most importantly, I am most interested in helping you change careers and/or increase your income.
Students I have helped have jumped from as little as $32,000 a year to $85,000 a year in a matter of months.
Other courses take you from A-Z teaching you each iOS concept one by one. This is not effective for retaining knowledge - information overload. This course will teach you iOS 9 and programming concepts in the order of importance - what potential employers are looking for and the core skills you need to make professional applications. Then you will test against those principles and build exercises to practice what you have learned. We will cover all of iOS 9 and Swift 2, but everything is prioritized for your benefit.
iOS 9 & Swift 2 Course Structure
You should watch the concepts and follow along building what we build in the videos. Then build the exercises and do the warmups on your own. If you really want to become a great iOS & Swift developer watch the concepts, and then do the exercises, warmups, and quizzes.
======================================================
Full list: https://goo.gl/yaqnG3
Files: https://goo.gl/dxxdKC
======================================================
Subcribe: https://goo.gl/YAav2j
You may be interested in :
C# Beginner: https://goo.gl/ntjdxK
C# Advance: https://goo.gl/Dj0pOy
Closed Caption:
hey everyone
mark price your death slopes calm today
we're going to talk about postman
so think about this movie is a little
bit exciting but also a little bit dry
I know what you guys are thinking but i
don't think this is the postman you're
probably expecting
by the way it's a cool movie all right
kind of
more the I don't know see it maybe don't
see it don't buy it though
okay and so what does postman
i'm going to type in postman chrome okay
and basically as a professional iOS
developer you're going to interface with
web servers all the time and you make
requests and as we talked about already
you can create read update now you can
post things already said that's create
anyway I'm you know kinds of operations
and you need to know how the Jason's
gonna look how the day is going to look
and so sometimes when you're on iOS
you're going to get things printing out
to the console make it look real nasty
it's it's hard to know if your request
is coming in right it's hard to know if
your code is bad or if the request is
bad or maybe you're calling the wrong
URL so what you want to do is you want
to get postman
so go to i just searched for chrome
postmen and it pops up right here you
can just click add to chrome minds
already installed and when you click add
to chrome right here but it's actually
going to do
I'll pull it up over here on the
right-hand side is going to install the
chrome app launcher right here
you just click that and right over here
you've got chrome and it's not there
well let's just add it to this is not
there
I don't know what happened to it click
Add ok
and it's checking and it's installing
you can see right there and there it is
ok so postman is now installed so i'm
going to click it drag it over here
this guy up a little bit here okay and
just go to the app and so what postman
does is it allows you to simulate web
requests like you might do through the
app but you can see exactly what data
you're getting back so if if the data
matches here and then the data matches
in your iOS app you're doing pretty well
so let's go ahead and type in the
browser Star Wars API and it's right
there the top one
it's SW api . co and what it is it's
just a free online API that has stuff so
for instance
this one has luke skywalker for instance
if you put this URL in here and so what
you can do is I can copy this right here
go over the postman and this is a get
request k
you can change it from get to post to
put to delete and a whole bunch of other
ones but those the main ones you put the
URL in there and this one is forward
slash people forward slash 1 / and all
you gotta do is click send and there it
is
so our request it hit the server and it
sent back data and here it is in JSON
format and so if we were doing this in
our app and this wasn't happening we're
getting something else we know that
we're doing something wrong with our
code and so all the time i'm going back
and forth the postman making different
requests testing things out to see
exactly what kind of data i'm looking
for i'm going to click this is things
here and go to the documentation and
here we go so you can do all kinds of
things like looks like they've got a
planet's one
so if i highlight the planets over here
I pressed sent pulls them different data
so i know it's working
so you're going to want to use this as
your testing out your data and your JSON
to see how it how it really how it
really looks and works
ok it's very fantastic tool I use it all
the time and also if i copy this right
here and actually print paste into a
browser window let's do that right here
it's doing a get request and it's that's
nice actually
this one actually sent us to this this
nice formatter screen
this is a python and django back in the
industry automatically let's go to an
API where it doesn't make it all pretty
for you let's go to the pokey
I really wish the pokemon API pokey API
the CEO will be working with this one
if i copy this right here ok
and then I put in pokemon / 1 / ok there
is you
excuse me so what we've got back is a
bunch of JSON right you're like oh my
gosh this is nasty so on get requests
you can just put those in a browser
no big deal put it in a browser you can
see all the data is here but it's kind
of hard to read so what I like to do
sometimes is go to this website i just
type in JSON online for matter
json online for matter and all you gotta
do is paste it in here command V to
paste
I I command command a command C and then
command V
there we go so they re there's our JSON
i click process and in formatted it for
us nicely so as you're going to go build
your Pokemon app or any other app you'll
be like oh yeah I want to access to the
abilities you can expand these things
you can look at them like all
descriptions
you can get all the URLs you can
collapse these very nice way to look at
the code because when you're an iOS and
you're printing stuff to the console
it's not going to look like this
it's going to look pretty nasty actually
and fact I pulled it up here in xcode
this is the pokemon project will be
working on and I just printed out the
data that comes from the server and it's
right here in the console usually your
consoles like this
you know it's it's okay to work with but
it's not the prettiest just a bunch of
lark I can't expand or collapse or
anything so anyway
just a quick example of some tools that
you're going to be using a regularly or
you're at least going to want to use it
helps should be bug problems and figure
things out and most new developers go
through tons of stress in trouble trying
to figure out how to connect to the
internet solve these problems here for
you
goals to make your life a little bit
easier this is Mark Price steps . calm
and let's keep moving bored
Video Length: 06:23
Uploaded By: Study and share
View Count: 38