66 comments found.
Hi, will you be updating the app again? Any new apps submitted need to meet IP6 protocol, can you confirm if your app meets this
Our apps are fine for the App Store. Cheers!
Do you have and android version for this??
No, sorry, we’re only iOS developers.
Android version available here: https://codecanyon.net/item/photofeed-android-universal-social-picture-feeds-app-template/17807781
How much would you charge me for you to configure it all ready for upload to my iTunes?
for customization requests please contact us by our profile’s contact form and we’ll get back to you asap
Hi, please can i ask why you went back to parse back end ? It’s shutting down soon?!
Parse SDK will not shutdown, if you read the change log you’ll see that it’s hosted on http://back4app.com, check it out it’s a new service 
Android version available here: https://codecanyon.net/item/photofeed-android-universal-social-picture-feeds-app-template/17807781
Hello fvimagination you did great work!! I only miss a post delete or comment delete .. How could I implement this?
Hi, thanks for your feedback, don’t forget to rate this app on your Downloads page on Codecanyon 
You can delete your posts by left swipe on them in your Account screen. You can’t remove comments in the app, you have to go into your CK Dashboard to remove such records.
Android version available here: https://codecanyon.net/item/photofeed-android-universal-social-picture-feeds-app-template/17807781
Hi, I try to share a post (text or a link) but im disallowed. ive removed the the code that forces this action, but yet the problem persists, can you guide me around this please and thank you.
Hi, sorry, your request is not so clear to us, what do you exactly need to do, post only text instead of image?
Yes i’ve just finished reskinning the app and making various changes I dont know if its me, or if you just cant post without an image?
No, you can’t post onluy text with this app, that’s why you get issues, we’ve called this app as Photofeed just because you must post pictures 
Makes sense, good project this is though. do you have a smiliar template that allows users to post text? or can you gide me through i can show you what ive done to attempt to remove it.
For extra customization requests please contact us by our profile’s contact form and we’ll get back to you asap, that’s not an easy job to do, you would have to fix also the UI design to enlarge the labels, besides the code to allow only text posting.
I would like to create a page where all post are loaded, Even the ones from people i don’t follow. Is this easy to customize?
And will there be some kind of caching build in? It looks like al the post are loaded in every time the screen is refreshed.
If you want to have the Home screen loading all existing posts, you have to edit the queryPostsOfFollowing() method by putting a true predicate like this:
let predicate = NSPredicate(value: true)
let query = CKQuery(recordType: POSTS_CLASS_NAME, predicate: predicate)
let sort = NSSortDescriptor(key: "creationDate", ascending: true)
query.sortDescriptors = [sort]
publicDatabase.performQuery(query, inZoneWithID: nil) { (results, error) -> Void in
if error == nil { dispatch_async(dispatch_get_main_queue()) {
for post in results! {
self.postsArray.addObject(post)
}
self.postsTableView.reloadData()
self.hideHUD()
}
} else { dispatch_async(dispatch_get_main_queue()) {
self.simpleAlert("\(error!.localizedDescription)")
self.hideHUD()
} } }
Thanks, that worked like a charm 
perfect, don’t forget to rate this app on your downloads page on codecanyon 
Android version available here: https://codecanyon.net/item/photofeed-android-universal-social-picture-feeds-app-template/17807781
Hi guys, just got this project, “did not find required record type:USERS_” I have created the record in my ck. followed the pdf also but can’t seem to solve it, what could i do?
Thank you.
Never mind that, my cloud kit had created a new user. Is it possible to post just text without an image?
No, that’s why we called this app Photofeed. You would have to write some code and update the UI to make it possible
Oh really? sorry must’ve forgot to read the name – unnecessary. Didn’t think posting just text would be much of a problem but cheers for your response.
we just meant that you would have to rewrite some code to disable pictures posting when it’s only text, the app forces you to add an image.
Alright, thanks! the templates awesome.
glad you like it, don’t forget to rate this app on your Downloads page on Codecanyon 
thought id be able to sort this, still can’t. think your “insta quotes” is more what I needed instead of this. Can i get my item removed in return for insta quotes?
Hi, we’re sorry but we can’t remove items here, Envato manages sales on this site, nor we can give templates away just because you don’t like it or it’s not what you needed, you will have to buy InstaQuotes if you want it.
Cheers!
there is some mistake in documentation !!!!
when i run the app its present many alert problem for me like <creationDate & recordID>
you write this variable in configuration file but you don’t talk about it in documentation
No mistakes, you have to follow the User Guide and create your own Bundle Identifier and then CloudKit Dashboard, then create your recod type and relative fields
i do take a look for these screenshots
http://postimg.org/image/chzoj66ij/ http://postimg.org/image/jneh1ynrn/ok so check all your Fields in the DEVELOPMENT environment on CloudKit and mark all their Sortable options on the right side
i do also
http://postimg.org/image/6e0qo22lb/Ok, if you’ll switch your CK Dashboard into PRODUCTION environment you can test the app only on a real device, check the Support tab on the top of this page
Is there any chance to get auto update? So theres no need to keep hitting the refresh?
You may call the query for followed feeds into viewWillAppear() method in the Home screen, but that will consume a lot of API calls against CloudKit, if you’ll gather a large amount of users you may need to pay Apple for a better plan. Plus, overtime you enter the Home screen you’ll have to wait for the app to reload all feeds, all the times These are the reasons why we haven’t put the query into viewWillAppear(). Cheers!
Android version available here: https://codecanyon.net/item/photofeed-android-universal-social-picture-feeds-app-template/17807781
Thanks for the latest update! Are there any release notes, or a way to see what’s changed other than diffing the files?
Hi, check the app description for the change log.
Android version available here: https://codecanyon.net/item/photofeed-android-universal-social-picture-feeds-app-template/17807781
Hi,
I keep getting this error and this is not my UUID, i only have one allocated and that’s my iPhone
Your build settings specify a provisioning profile with the UUID “bd9d78b7-22b9-41d0-be92-24e2dc4fb348”, however, no such provisioning profile was found.
Xcode can attempt to fix this issue. This will reset your code signing and provisioning settings to recommended values and resolve issues with signing identities and provisioning profiles.
Hi, have clicked on Fix Issue button?
Yes that didn’t work, I’ve got many apps and not faced this issue before
XCode may mess up some files sometimes, it’s a matter of remaking your Distribution provisioning profile, then go into Build Settings, search for “code sign” and set your iPhone Distribution profile and select the provisioning profile. Restart your Mac first, it may work.
also check this out: http://stackoverflow.com/questions/34346436/xcode-7-2-no-matching-provisioning-profiles-found
Please could you post the complete code for the ads to be removed, i’m struggling even following your video, this would allow me to replace the current file in question, would be very appriciated
MARK : - IAD AND ADMOB BANNERSYou’ll find that at the bottom of many .swift files, check all of them.
Hope this helps
Hi,
I dont want ads or iads showing in my app, how do i dissable them?
Hi, check this video out: https://youtu.be/-AnEd1tfcWk
i think your video is a little out of date, it’s not 100% the same and struggling to edit all the code!
It’s a general video that shows how to remove ads, you’re have to check the lines of code removed in the video and remove the same ones in your app.
Parse will be fully retired after a year-long period ending on January 28, 2017. Is there away your app can work from a stand alone server (or a locally hosted Parse server)?
Hi, yes we read that announcement and it shocked us a bit, very bad news for us and thousands of developers. Anyway we’ll check out Parse migration tutorial and see if it works, otherwise we’ll have to painfully switch to another free backend (a huge waste of time, but what else can we do). We’ll need time to workout a solution, please be patient, there’s still a long year left of working Parse. Cheers!
hey i have There is a error on app i can’t go to Search and to the me can you fix it >>?? this error // Get User’s data cell.fullnameLabel.text = ”\(userPointer[USER_FULLNAME]!)”
EXC_INSTRUCTION(code=EXC_i386_INVOP,subcode=0×0)
Hi, it seems that one of your records in the Parse database is missing the fullName field. Are you using your own Parse app? If not, you should, as mentioned in Photofeed’s description, because we clean the demo database once in a while.
If not, please check the rows in tge User class in your Parse database, and insert a name into the fullName column, where the field is empty.
i i have all this row in parse app
and i can’t add username
and i can’t pot like ad comment
and the view of me is not working
if you can fix it for me
you can Control from my computer of teamviewer and fix it 
We’re away until Monday, so we can get to TeamViewer on next Monday, unless you’ll figure it out sooner. Try to remove all data and Classes in your Parse database, delete the app from Simulator or real device and run it again, sign up and create posts, see if it works then.
i delete all data in parse
but it not working
pls fix it for me 
we’re off of work until Monday, as mentioned above, so please contact us by our profile’s contact form on next Monday and sending us your TeamViewer id and password. Cheers!
ok thx you 
hey can you now fix error for me ) i send for you id and password of TeamViewer
please email us your TW id by our profile’s contact form, we can help you tomorrow, not today sorry, we’ve been too busy
ok my id: 138 596 875 password: 123456789 email: saloom_omar@hotmail.com
hey can you now fix if to me 
We’re trying to get connected, but it doesn’t work. please contact us privately, never share login credentials publicly, send us your current ID and password for Team Viewer
id : 138 596 875 pasword123456789 paswword fot id : 4zq8v2
We’re sorry, we’re unable to get connected to your computer via TeamViewer, it doesn’t get connected, we don’t know why.
So let’s try something else, please contact us by our profile’s contact form and send us your Parse account credentials (login and password). We’ll check your database and find out what field is empty, we’ll fill it and your app should work then.
i send for you email
i well add you on TeamViewer username ???
ok, sorry, but maybe you don’t read our previous comments: please contact us by our profile’s contact form (you can find it on our profile’s page), then we’ll exchange login credentials. Thanks!
ok
TeamViewer
id : 138 596 875
password : 123456789
can you Try again
Excuse 
we tried more than once now, it just doesn’t get connected, it may be a TeamViewer server issue, you know. Now we are closing for today, it’s 6:00 PM here now, we’ll be here in 15 hours.
Again, it would be good for you if you send us your Parse user and password by our profile’s contact form, so we’ll investigate what’s wrong in your database, it surely has an empty field in the fullName column. You can check it out on your own too.
ok i well send you email about username and password :
i have error with button me she make crashing app
and i add comment but he not view in table view in app 
Ok, we’ll be checking your email tomorrow. Thanks.
i send for you email
if you can fix it pls 
i have error on app with button me she make crashing app
and i add comment but he not view in table view in app 
Hi, it’s hard for us to understand what your issue is with that poor info, anyway we need to ask you to please be patient for just a few days because we’re updating this app with CloudKit, removing Parse, so you’ll download the update and work on it then by following its new User Guide.
Thanks!
I did not understand you well delete parse and add CloudKit ?? When the new update is Available ?
Yes, we have to remove Parse SDK from all our apps, you should have got an email from parse a few days ago saying that they’re shutting down the service on Jan 2017, so we’re in the process of updating all our apps that use Parse backend, switching into Apple CloudKit. Weìre working hard to make it asap, an update for Photofeed may be available in a few days, as mentioned in our previous comment. You’ll get an email from Envato when the update will be available, or follow us on twitter to stay updated.
ok but if you add CloudKit i Must have apple developer to used this app ?
Yes of course, anyway you must have a valid account on the Apple Developer Portal otherwise how could you publish iOS apps to the App Store?
We’re forced to use CloudKit now, it’s the best backend for iOS so far, easy to use and reliable. We wish Parse was not shutting down, but there’s nothing we can do against it.
ok
but how can me make apple developer account i don’t have Visa to buy account developer

Well, then how can you publish apps on the App Store? Sorry, but that’s a must for anyone who wants to publish iOS apps, you should have known that before getting into XCode and app development. You should find a way to get a credit card and enroll for an iOS developer program, ask your friends, you know.
ok thx
add follow you on twitter
can you add login in app with facebook and twitter ?
No, sorry, CloudKit doesn’t have such API’s, we’ll use standard Login/Sign Up. Cheers!
ok

hey thx for update but file home.swift in no’t in app ???
Sorry? do you mean that Home.swift file is not in the code? it’s in there, yes.
Push notifications how i can add in app ?? with CloudKit ?
Hi, we are not able to add push notifications with CloudKit yet, we’re looking for a good external Push service and see if we can work something out. Cheers!
ok 
can you make video how to add CloudKit and how work in dashbord
Hi, it’s not so hard to create records on CloudKit, you may check this official guide to understand how it works: https://developer.apple.com/library/mac/documentation/DataManagement/Conceptual/CloudKitQuickStart/EditingSchemesUsingCloudKitDashboard/EditingSchemesUsingCloudKitDashboard.html
hi thx for new update
can you make video of how to add Push Notifications with web (https://onesignal.com)
i don’t no how to add 
Hi, you don’t have to add any code, the app already has it. Follow the User Guide.pdf to setup an account and cerificates to make the app working with Push.
ok thx 
you’re welcome. also check the Support tab or app description
hi i can’t connect app with icloudkit take my time viewer id id = 138 596 875 pass = 123456789
Ok, are you online on TeamViewer now?
We’ve tried to connect with TV but it doesn’t work, please contact us by our profile’s contact form sending us your ID and password again. Thanks.
yes im online on TeamViewer now
Anyway, does XCode show you a Fix Issue button in the Capabilities tab? The reason may simply be because your Bundle Identifier has already been used on iTC, so just change it in the General tab and click Fix Issue in the Capabilities tab again.
id = 138 596 875 pass = 123456789
i dont now how can make this ?
Well, exactly has we’ve explained above. We’re unable to connect to your mac through teamViewer, it always stops the connection, don’t know why maybe it’s their server issue, so please contact us by our profile’s contact form, take a screenshot of the Capabilities tab of your XCode and we’ll go on from then.
go to meting id m01-061-266
m30-426-247
hi i can’t connect app with icloudkit take my time viewer id id = 138 596 875 pass = 123456789
we’re off of work until tomorrow, and we should fix an appointment at a certain hour, we’re not always available at anytime, so please contact us by our profile’s contact form tomorrow. Anyway, we helped you already with it today, so what’s the issue now?
hey make update to TeamViewer to connect to my computer pls 
Hey, please contact us by our profile’s contact form. Thanks.
ok what is your contact to add you on TeamViewer
We do not share Teamviewer credentials in the comments board, don’t know how many times we have to say this: please contact us by our profile’s contact form and send us your TV info 
Go here and use the mail form: http://codecanyon.net/user/fvimagination
Session code: s26-547-461
add me

Hello,
Please download the following software to start the remote control tool TeamViewer Quicksupport:
Session code: s26-547-461
http://get.teamviewer.com/v11/s26547461Regards, omar_hodrob
www.teamviewer.com – Easy remote control & collaboration
Hi, we’re not available right now to assist you through TeamViewer, but please read our comments, if you’ll keep ignoring them, we’ll ignore your requests. We’ve asked you to please contact us by our profile’s contact form several times, so we can make an appointment. Hope you’ll understand. Thanks.
where is (contact form several times) ?
Look at the last comments we’ve sent you before your 2 last ones.
Go here and use the mail form to contact us: http://codecanyon.net/user/fvimagination
Hi! When will be the next update coming? Read about the non acceptance of iads. I am looking forward to buy your app once it is updated.
We’re not updating this app at the present, and Apple hasn’t told us anything official about this matter, iAd still works, if it won’t in the future, we’ve prepared a video that shows how to remove ads in our YouTube channel. Cheers!
Hi,
A few more questions.
1) How does the admin remove reported content?
2) Can you add a function to add videos aswel as photos?
Cheers
Hi;
1. Manually on his Parse database (it’s kinda working with an excel datasheet, very simple.
2. Not on this template, it will stay the way it is. We may do that as an extra customization job, it will require lot of more code though, you may contact us by our profile’s contact form to get a quotation for it.
Cheers!
Hi,
A few more questions.
1) How does the admin remove reported content?
2) Can you add a function to add videos aswel as photos?
Cheers
Do you have one already in store for testing?
Hi, no it’s an original template, we have not published it on the App Store
Android version available here: https://codecanyon.net/item/photofeed-android-universal-social-picture-feeds-app-template/17807781