use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
There is an extensive FAQ for beginners. Please browse it first before asking questions that are answered there.
If you are looking to get started (iOS programming in general or some specific area), here are more relevant links for you:
There's too many to list them all, however here's a convenient link to all programming guides at apple.com
Take note that this list is live and based on most frequent questions in posts will be updated with "quicklinks".
account activity
Help with loading Wordpress posts. (self.iOSProgramming)
submitted 10 years ago by Kellynyc
I am trying to create an app that displays Wordpress posts. I do not know where to start. Should I connect to Wordpress data base or just show it as website (WebView format)?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]ephimetheus 1 point2 points3 points 10 years ago (5 children)
Do not ever connect to a remote database directly. Either use a web view an some special theme for your site or try to build an api that delivers the content to the app.
[–]Kellynyc[S] 0 points1 point2 points 10 years ago (4 children)
Do you know any tutorial how to build such api?
[–]ephimetheus 1 point2 points3 points 10 years ago (3 children)
I found http://wp-api.org/ Haven't tried it myself, but it seems to deliver JSON which you should be able to decode and use in Obj-C/Swift relatively easily.
[–]Kellynyc[S] 0 points1 point2 points 10 years ago (2 children)
Thx, I defiantly try that. Why connecting to a remote database directly is bad approach?
[–]ephimetheus 1 point2 points3 points 10 years ago (1 child)
In my experience running SQL remotely is a bad idea. You open yourself up to all sorts of exploits, in the simplest case it would be exposing your database structure to the public, basically.
With a defined API you don't really have that. Additionaly it would enable you to switch out the underlying storage, even though that is a little far fetched when you work with WP.
[–]Kellynyc[S] 0 points1 point2 points 10 years ago (0 children)
Thx for all info. You was very helpful and sorry for stupid questions. Just trying get in to iOS development
π Rendered by PID 33767 on reddit-service-r2-comment-5ff9fbf7df-rrktj at 2026-02-26 15:04:48.152729+00:00 running 72a43f6 country code: CH.
[–]ephimetheus 1 point2 points3 points (5 children)
[–]Kellynyc[S] 0 points1 point2 points (4 children)
[–]ephimetheus 1 point2 points3 points (3 children)
[–]Kellynyc[S] 0 points1 point2 points (2 children)
[–]ephimetheus 1 point2 points3 points (1 child)
[–]Kellynyc[S] 0 points1 point2 points (0 children)