build an app for a website?!
POM
Member Posts: 2,599
hey guys,
i came across a big opportunity,
the general manager of a major bus transportation company in my country
asked me if i can make an app for the company, the app needs to include a search
like the website, so the user can search for lines, and paths etc..
is it possible with the pro membership?
i came across a big opportunity,
the general manager of a major bus transportation company in my country
asked me if i can make an app for the company, the app needs to include a search
like the website, so the user can search for lines, and paths etc..
is it possible with the pro membership?
Comments
The only thing that you can do in the pro license is link to an external webpage. Search is impossible in GS.
You might take a look at Appcelerator if you have any PHP coding ability...as it will do what you are looking to do...but you do have to have programming experience.
_______________________
*** visit www.spiritApps.com to check out the Spirit Connoisseur Apps ***
(Rum and Vodka now available for 17+)
_______________________
:-)
""You are in a maze of twisty passages, all alike." - Zork temp domain http://spidergriffin.wix.com/alphaghostapps
i mean.. 2k$ .. seriously?!
""You are in a maze of twisty passages, all alike." - Zork temp domain http://spidergriffin.wix.com/alphaghostapps
(Mind, you might be able to, but I've tried "painting the ends of needles" (C, C++) several times, and my poor ol' brain just can't hack it...)
""You are in a maze of twisty passages, all alike." - Zork temp domain http://spidergriffin.wix.com/alphaghostapps
No one is learning Objective C in a couple of weeks...or just "picking it up" from a few tutorials. To print "Hello World" on the screen takes about 800 lines of code.
If you've never done object oriented programming and at least versed in C++ or C# for at least 2-3 years...I wouldn't plan on native app development right away. Appcelerator (or something similar) will make it much easier and faster to push out a simple data app. Plus Appcelerator is free (open source) and uses php as its core language for scripting.
;-)
""You are in a maze of twisty passages, all alike." - Zork temp domain http://spidergriffin.wix.com/alphaghostapps
""You are in a maze of twisty passages, all alike." - Zork temp domain http://spidergriffin.wix.com/alphaghostapps
For Example, to create a Hello World App using ObjC is as simple as adding 4 lines of code:
========================================================================
1. Open XCode.
2. Create a new iPhone project called HelloWorld of the “View-Based Application” type.
3. Open HelloWorldViewController.m in the “Classes” folder.
4. Uncomment the ViewDidLoad method, and add the following 4 Lines of code to it:
`- (void)viewDidLoad {`
`[super viewDidLoad];`
`UILabel *hTag = [[UILabel alloc] initWithFrame:CGRectMake(90, 40, 90, 40)];`
`[self.view addSubview:hTag];`
`hTag.text = @Hello World;`
`}`
5. Hit the "Build & Go" Button.
========================================================================
QS
Dr. Sam Beckett never returned home...
Twitter: https://twitter.com/Quantum_Sheep
Web: https://quantumsheep.itch.io
"Hello World" takes 0 lines of "user-entered" code and a little less than a minute to complete and deploy ... to the simulator. ;-)
Like I said earlier...the guys programming our stuff have about 30 years behind them...and it took a little while for them to adjust to the syntax and to get through the meat of the API library (which is ENORMOUS). After about 6 months of working with it, they are now quite comfortable with it.
But I will say that working will GS will shorten your dev time by 80-90%.
@Bark
Yes Int. Bldr. can be a handy tool...but if you don't understand the code syntax or structure...you will be in trouble if you try to do anything very complex or considered "thinking outside of the box".