My 13 yr old just got (I payed for it) the apple software to develop the iTunes Application. As a learning opportunity I have asked him to get one Apps ready for iPhone specifically for our Club.
Would like to know if this free apps is appreciated by the members and also the Owners dont have any problems with this.
Currently Samar is in the primary state of reading and analyzing the code, he is weeks away from any form of development.
This will be a free apps and all cost for this are borne by me.
I will ask him to signup and login.
DJ incase we all agree then he may need your input to make this happen.
(05-09-2009, 11:40pm)bgaheer Wrote: My 13 yr old just got (I payed for it) the apple software to develop the iTunes Application. As a learning opportunity I have asked him to get one Apps ready for iPhone specifically for our Club.
Would like to know if this free apps is appreciated by the members and also the Owners dont have any problems with this.
Currently Samar is in the primary state of reading and analyzing the code, he is weeks away from any form of development.
This will be a free apps and all cost for this are borne by me.
I will ask him to signup and login.
DJ incase we all agree then he may need your input to make this happen.
Cheers,
Bill
Mate that is a great idea !! Well done..Look forward to seeing it..
Cheers
(05-09-2009, 11:40pm)bgaheer Wrote: My 13 yr old just got (I payed for it) the apple software to develop the iTunes Application. As a learning opportunity I have asked him to get one Apps ready for iPhone specifically for our Club.
Would like to know if this free apps is appreciated by the members and also the Owners dont have any problems with this.
Currently Samar is in the primary state of reading and analyzing the code, he is weeks away from any form of development.
This will be a free apps and all cost for this are borne by me.
I will ask him to signup and login.
DJ incase we all agree then he may need your input to make this happen.
Cheers,
Bill
Can you give us an idea as to what sort of app you are thinking of Bill?
Update.
Samar is planning to use the club logo as the Apps picture. This will be loaded into iPhone via itunes. Once loaded if clicked on will ask for a login / password.
It will save it once entered (log out option will be there) and once in - you can click on (list is still not decided) and you can go straight to selection.
Samar will need some input and help. He is very dedicated in these things - he has already developed about 20% of the code.
We are going on a vacation in the last week of Sept for a Month - so there will be no development happening during this time.
Samar got some time out of his final exam, PS3 game time and bugging me with all the questions....., and he claims that I didnt answer half his questions.
Anyway the boy has done some good work, finally he has reached where we now sees the busa logo on the iPhone (Objective C on X-code coding for the same) and now he is working on opening the site out of the logo.
Attached are the pics of his progress, he is slowly moving towards putting us on the iPhone.....
Since I dont answer his questions, he reckons any help from fellow members is helpful......
Please feel free to ask any questions or if you need a copy of the code then he is happy to provide you with it.
Once all is done we will need some beta testers for the same and once approved we will officially launch the page.
BTW he has worked hard (about 8 hours of coding) to get to this stage....
That site has a link to a Xcode project archive for a fully functional RSS reader. I've changed the hard-coded XML URL string to a random medical feed and it works fine.
Which brings me to mention: it appears that the syndication link you have hardcoded into your app contains a bunch of html.
For example, a nice clean RSS feed looks like:
Can we get such a thing from MyBB?
Samar/Bill - you blokes would know more about this stuff than me, am I on the wrong track here do you think?
Thanks again for sending me the source, and keep up the good work.
If possible, can one of the mods please send me the following php file from the server?
Thnx for helping, I am a beginner at coding so i do not know in-depth coding, i will try the website and see if i can get something working.
i will see if i can clean up the xml coding.
thanks for your help.
// Syndicate a specific forum or all viewable? if(isset($mybb->input['fid'])) { $forumlist = $mybb->input['fid']; $forumlist = explode(',', $forumlist); } else { $forumlist = ""; }
// Get the forums the user is not allowed to see. $unviewableforums = get_unviewable_forums(true); $inactiveforums = get_inactive_forums();
$unviewable = '';
// If there are any, add SQL to exclude them. if($unviewableforums) { $unviewable .= " AND fid NOT IN($unviewableforums)"; }
if($inactiveforums) { $unviewable .= " AND fid NOT IN($inactiveforums)"; }
// If there are no forums to syndicate, syndicate all viewable. if(!empty($forumlist)) { $forum_ids = "'-1'"; foreach($forumlist as $fid) { $forum_ids .= ",'".intval($fid)."'"; } $forumlist = "AND fid IN ($forum_ids) $unviewable"; } else { $forumlist = $unviewable; $all_forums = 1; }
// Find out which title to add to the feed. $title = $mybb->settings['bbname']; $query = $db->simple_select("forums", "name, fid, allowhtml, allowmycode, allowsmilies, allowimgcode", "1=1 ".$forumlist); $comma = " - "; while($forum = $db->fetch_array($query)) { $title .= $comma.$forum['name']; $forumcache[$forum['fid']] = $forum; $comma = ", "; }
// If syndicating all forums then cut the title back to "All Forums" if($all_forums) { $title = $mybb->settings['bbname']." - ".$lang->all_forums; }
// Set the feed type. $feedgenerator->set_feed_format($mybb->input['type']);
sorry mate I appreciate your help but the code you sent me is not objective C and i just tried it out and it failed.
Thnx for trying, i will look further into this tomorrow.
i have already set up threads on the apple developer forum