Donate SIGN UP

how do I build an App

Avatar Image
lyndylou | 15:54 Wed 12th Sep 2012 | How it Works
12 Answers
Hi I write Children's fun and educational stories. A friend told me I should look at writing ? or Building ? and App to sell the stories.

I thought this was a very good idea. So I would like to know where I should look for help in building and selling an App please.

Could you help my in plain English though please, because I am old!!............... although I use various programs on my laptop quite a lot and understand quite a bit about the internet, face book, twitter etc - I have also dabbled with e-bay and amazon (buying and selling) but I am worried this info will be technical

Answers

1 to 12 of 12rss feed

Avatar Image
Part of my job is programming. Although I have never programmed a mobile app I have worked in a number of languages. I couldn't even tell you if the languages for writing apps have the same terms for what I will describe but they will certainly have these concepts.

Programming is actually a very simple thing at its core and it is more or less the same in all...
03:12 Sun 23rd Sep 2012
Sorry if this is going to seem unhelpful, but here's a short video on how to create an app that simply shows the words "Hello World".

If you watch the video, you'll probably realise that creating an app is not something that you are likely to be able to do.

http://www.madewithma.../hello-world-tutorial
Try the MIT APP Inventor application;

http://appinventor.mit.edu/

It's designed for computer savvy folks, rather than programmers, to create apps with. Only Android aps though, not iPhone ones.
"If you watch the video, you'll probably realise that creating an app is not something that you are likely to be able to do.
"

hilarious, please tell me thats a joke, if not please explain why the OP wont be able to do it ?
Because there's a world of difference between getting it to say "Hello World" and creating a fully functional e-commerce system.
-- answer removed --
" if not please explain why the OP wont be able to do it ?"

Watch the video.
Question Author
Please explain who are the OP and why won't they be able to do it - If you mean old ( as I am ) do you think we lack brain cells ?? We may not have grown up with such technology and therefore not used to the techno language in our lives but shown something most of us would get it !!
OP means Original Poster, i.e. the person who set the question, nothing to do with being old... And, nobody is implying you lack brain cells, but writing an app is a very complicated process and is something that can take years to learn how to do well, it's not something that can be summarised in a few paragraphs of plain English.
Question Author
Thanks for the explanation ChuckFickens - Rojash I watched the video and at first I thought you were right how complicated but if you watch it without the sound - ie with out the annoying techno speak the maker only clicks a few bars and hey presto there it is - Thats what I understand - it may take years to understand what each click actually controls or does, but in essence making a few moves can build you an app - we older people just need not be afraid of it
Part of my job is programming. Although I have never programmed a mobile app I have worked in a number of languages. I couldn't even tell you if the languages for writing apps have the same terms for what I will describe but they will certainly have these concepts.

Programming is actually a very simple thing at its core and it is more or less the same in all modern languages. What looks like gibberish to the uninitiated makes sense if you understand the basic concepts.

Basically the programmer creates objects (forms, buttons textboxes, dropdowns etc) which have properties and methods. The properties of an object describe it in every way. Length, width, Top , Left, etc are all properties of objects that are displayed. The properties can even be other objects such as the "collections" of textboxes etc in the form.

The programming language comes with a library of standard objects such as forms, textboxes and buttons. Custom objects can also be created by the programmer as a "class" where the programmer defines the properties and methods.

The objects created from a class become "instances"of a class. For example each button on a form is an instance of the button object class. The programmer creates the instance then sets the properties to define where it is and what it does when clicked.

Objects also have "methods" such as the click event which are procedures to perform tasks such as typing a letter into a box or saving a contact on a phone. The objects methods can also cause it to change behaviour. For example a speciial button class might have a Flash method which the programmer calls to manage the behaviour.

The "object model" describes the properties and methods of an object. These are centre concept in all programming.

A program is really just a set of objects and procedures to read and write the properties of objects and trigger their methods.

Programming requires the ability to model the logical processes required to produce outcomes. There are two main constructs in logic. The If/Then/Else construct (and its variants) and various forms of the Loop.

The real art is in how a programmer builds their custom object classes and how they structure the storage and retrieval of information.

Syntax is the first thing you must master in your chosen environment. This describes the details of writing an If/Then construct, a loop and how to address the properties and methods of objects. Many languages share very similar constructs and syntax. In terms of learning a spoken language it is like knowing how to build a sentence

Fluency is then ultimately about becoming familiar with the details of the object models you are working with and knowing what is already available without having to reinvent the wheel. In language terms this is the vocabulary.

And like in spoken language, programming isn't something you can just read a book, do a few exercises and presto you are there. It comes with experience. It took me about three years of part time experience to become a competent programmer. I taught myself through necessity and persistence after having a background in computers for a long time.

Programming can be very rewarding especially if you have the time and opportunity to learn how to build really efficient, powerful classes. However no app built by a novice on their first attempt is likely to be well constructed. Any programmer will tell you their early work was quite primitive.

Don't shoot straight for your killer app. Gain experience by building some simple things with your own classes while you read about the concepts I have outlined above.

In a couple of years you might well be able to build that app yourself, especially if you have a logical mind, plenty of time on your hands a commitment to your goal.
Question Author
Wow Wow Wow Beso Thank you very much - I actually understood most of your very comprehensive tutorial and I appreciate your analogy with "language" and yes in terms of technology I am still reading Janet and John, but I have to say that I am not scared of learning and could even see me being excited once I had achieved a "primitive" construction - Thank you once again
-- answer removed --

1 to 12 of 12rss feed