146 comments found.
Good luck with your sales
How can I download demo v ?
you must buy the app template, there is no demo files, you can check maybe the app Youtube video presentation
Do you also plan to make web template, so the ads-classifieds could be seen also on web ?
Yes we have a plan to move this app on Web as well in near future.
Do you have wordpress and Android app?
No Wordpress?
We are working on wordPress for our customers, can you let me know what you are looking for? We can develop that.
hii.. kindly send me the main theme link .. also dose it has rtl ?
What do you mean by main theme link ? we can do rtl for you for a small extra fee.
I mean that .. is it linked with web theme ? If so please send me the link for the web theme
android version?
Do you have web version? and do you have back end demo?
No web version for this app, you may check woopy, it has web, Android and iOS versions: https://codecanyon.net/search/woopy?utf8=%E2%9C%93
backend demo is not available since it’s hosted on back4app, no mySQL database
Hi, thank you for awesome iOS App. An issue I have is when posting a new ad, the alert pops up for a second then disappears without allowing me to select “OK”... and stays on the post view… also is there a way after posting a new ad to go to the “My Ads” view? Thank you again!
ok, i’ll check the code out for that dismissing Alert. unfortunately there’s no way to go to my Ads after posting an ad because it’s in another controller owned by the Account one
1. enter Post.swift, scroll down to the postAd() method
2. replace the saveInBackground() code with this one:
// Saving block postObj.saveInBackground { (success, error) -> Void in if error == nil { self.hideHUD() let alert = UIAlertController(title: APP_NAME, message: withMess, preferredStyle: .alert) let ok = UIAlertAction(title: "OK", style: .default, handler: { (action) -> Void in self.dismiss(animated: true, completion: nil) }) alert.addAction(ok) self.present(alert, animated: true, completion: nil) // error } else { self.simpleAlert("\(error!.localizedDescription)") self.hideHUD() }}
Worked perfect… thanks for the quick support!
you’re welcome! Please don’t forget to rate this app on your Downloads page, I’ll appreciate your support: https://codecanyon.net/downloads
Thanks!
I will def rate the app… any chance to get a close/delete account feature added to the account VC in a future update too? Thanks again!
No, sorry, with Parse SDK you cannot delete accounts, only the Admin can do that via the Parse Dashboard.
You may write something additional in the tou.html file and put an email address where users can contact you to have their account deleted, it’s a nice option after all.
Thanks for the help… I have one more issue that I hope you can address, then I will leave you alone for a bit… Where do I see comments from when a user reports an ad? Does it send an email? Thanks again!!!
no, the app doesn’t send an email to the admin, that’s why the user guide says to daily check your parse dashboard for reported content
Sorry about that… I must have overlooked that part of the guide. One other issue: When I go to select an image for an ad, and tap “Choose from Library” the photo library loads, but the cancel button in the navbar (top right) is almost impossible to see. How can i change the color to black? Thanks again for the support!
imagePicker.navigationBar.tintColor = UIColor.darkGray
You must add it below this line:
imagePicker.allowsEditing = false
Thank you… that worked perfectly… I also had to add it to the account.swift file… I think I have one more bug/issue: If I log into my account using FB… then log out and log back in with a different account, my FB avatar is still showing. Any ideas?
you can’t avoid it because parse sdk stored current user’s data locally for better performance on loading data, so if you use multiple accounts you must kill the app and open it again that’s because usually a user is supposed to have one account only, and i know you switch accounts for test purposes, so you need to logout, kill the app, open it again and login again
Please don’t forget to rate this app on your Downloads page, (unless you already done that), I’ll appreciate your support: https://codecanyon.net/downloads
Thanks!
Hello, can you please help with a crash I am getting? When I am not logged into the app, and try to “Send Message” from the ShowSingleAd VC the App Crashes. If I log in with my FB account and do the same thing, the App crashes. But if I am logged in with my user/pass account the message sends. Any ideas or suggestions?
I get this error: Thread 1: Fatal error: Unexpectedly found nil while unwrapping an Optional value
On this line of code: self.receiverEmail = userPointer.email!
Ok, thanks for sending such details, i’ll check the code and fix this issue. You may contact me by my profile’s contact form so i’ll send you the updated ShowSingleAd.swift file after i’ll fix it.
let userPointer = singleAdObj[CLASSIF_USER] as! PFUser userPointer.fetchIfNeededInBackground { (user, error) in if error == nil { if userPointer.email != nil { self.receiverEmail = userPointer.email! self.postTitle = self.adTitleLabel.text! print("\(self.receiverEmail)") if self.messageTxt.text != "" && self.emailTxt.text != "" && self.nameTxt.text != "" { let strURL = "\(PATH_TO_PHP_FILE)sendReply.php?name=\(self.nameTxt.text!)&fromEmail=\(self.emailTxt.text!)&tel=\(self.phoneTxt.text!)&messageBody=\(self.messageTxt.text!)&receiverEmail=\(self.receiverEmail)&postTitle=\(self.postTitle)" let reqURL = URL(string: strURL.addingPercentEncoding(withAllowedCharacters: CharacterSet.urlFragmentAllowed)! )! let request = NSMutableURLRequest() request.url = reqURL request.httpMethod = "GET" let connection = NSURLConnection(request: request as URLRequest, delegate: self, startImmediately: true) print("REQUEST URL: \(reqURL) - \(connection!.description)") self.simpleAlert("Thanks, You're reply has been sent!") // SOME REQUIRED FIELD IS EMPTY... } else { self.simpleAlert("Please fill all the required fields.") } // THIS USER HAS NO EMAIL ADRESS } else { self.simpleAlert("Sorry, this seller has not registered an email address, so you can't contact him/her") } // error on userPointer } else { self.simpleAlert("\(error!.localizedDescription)") }} </per>
This worked for me somewhat… I sent you an email. I just found your “Woopy” app, and I wish I found it first before this one… It’s the same app but with more features… Will probably go get that one instead, and start customizing it…
woopy is not really the same app, it has a lot more features than Classify and a different UI design. Anyway, glad it worked!
Hi there, if i need some customization on the apps, can you do it with extra fees ? if yes how can i contact you ?
you may contact me by my profile’s contact form: https://codecanyon.net/user/cubycode
done, thanks
ok, i’ll reply to your email asap
is this app compatible with Classiads – Classified Ads WordPress Theme ? Synchronised and all the stuff ?
no, it’s not.
Hi, few issues with the app
anytime when I need to upload an image from the library, it shows my photo library, however if I decide NOT choose any images, i cannot go back to the previous screen. It’s like you have to choose an image
Can you take a look at this issue?
Also i have no ads in any category, however when i tap on any category, the loader is spinning for at least 15 seconds. Why is this taking so long?
Hi, I’ll check it out, but I don’t understand your second question, sorry, what do you mean by “ads”, the AdMob banner ads?
well, AdMob ads don’t have categories. Ads are the user ads AdMob ones are quick as hell… but the categories in the app open extremely slowly.
How big are the images of the ads you’ve posted?
Have you used the app to post them?
What about your internet speed?
one category has only one ad and i chose one of the sample images in ios simulator. all the other categories are empty and loading is still very slow.
if a category has no ads, the app loads 0 ads… i please need you to record a video with your device, upload it to Dropbox and send me its download link by my profile’s contact form. thanks!
Hey, can you addimage recognition feature, like when someone takes a picture, the title of the product gets auto completed based on the image? Like this guys over here: http://pssthemes.com (check their Classifieds app)
No i can’t, sorry, image recognition is not precise and you would still need to adjust the title, so it’s a useless feature for this app
Hi, it would be great if you could add wechat share and wechat payment method for who wants to apply ads.
Regards
i’m not experienced with we chat api
Hi! When I try to contact the advertiser the app crash and close, just after press send message on the ad screen. Can you help me please?
have you correctly configured the sendReply.php file and its url, as the user guide explains?
What is the error message you get in the Xcode console? That tells you what’s causing the crash
Hi! The crash is on my iPhone 6 device. I generate an IPA file to test on a real device.
Need I set something INSIDE the file sendReply.php?
I followed your PDF tutorial and I set this line with my own server address: let PATH_TO_PHP_FILE = “http://anuncios.appcontrol.info/goiania/”
As you can see the endReply.php can be accessed by http://http://anuncios.appcontrol.info/goiania/sendReply.php
I translated same labels to Brazilian Portuguese with all care to do not disturb the GET functions I am sure it is not caused by my translation.
Would you like to check my FTP and Source Code? It is not working and I need your urgent support.
Thanks
Wes
I don’t work on weekends so i can’t access the code, you need to provide the Xcode console message on crash so you must test your app with your device plugged into the USB port of your Mac and hit the Run button, otherwise we’ll never know the reason of your issue.
please contact me by my profile’s contact form and send me the Xcode console error message, let’s keep talking by email and not by comments.
Hi guys! I try to replace the orange top navigation color to other one but I don’t know how to proceed. Can you give me a hand, please? Your documentation does not have any reference about how to replace color scheme could be very useful if you add step-by-step how to customize colors.
Here is my print screen I try to change it via Main.story board but it’s impossible. http://prntscr.com/g81i9k
Regards.
Hey that is ok ;D I found the solution from your Support tab here. Thanks.
good job don’t forget to rate this app on your downloads page: https://codecanyon.net/downloads
Apple rejected my app saying its missing the NScalendarusage in the info.plist. Also, there needs to be a way to block post as the other user stated above, apple has changed alot to their approval guidelines. Please update me. Thanks guys
you’ve got a stupid reviewer, but if he wants Calendar privacy option then just enter Info.plist, click on any + button of any row and scroll down until you find Pricacy – Calendar usage. Select it and type something in the cell next to it, something like: This app needs to use Calendars to share data”
Lol trust me, WE ALL KNOW how dumb apple reviewers can be hahahaha but thank you, will try that now!
Actually looking at the info.plist its already there! I’m going to try again and send them a screen capture showing it is indeed included and explains the usage of the calendar! Thanks again
you’re welcome, good luck!
any tutorial how to fix b4app config?
can admin block or aprove for post?
You can check this video out, it shows how to work with the Parse Dashboard, it’s kinda working on an Excel file https://youtu.be/TxeTFdSVCDA
Hello guys, I emailed you regarding the ads not showing up in my app. Please get back to me when you can. Thanks
I already got your email, I’pm waiting for more details from you.
thanks I sent more details including the console log message
ok, you don’t need to send a comment every time you email me, i get your emails
At times you guys don’t reply to emails for days unless you’re contacted here, I’m running a business just as you guys are, it’s called good customer services but I’ll be on the beach all weekend with my laptop so I’m responding to everything no matter the circumstance or where I am
That’s not true, sorry, i always reply to emails within 12h
And my apologies, I am working on deadlines as you guys are and didn’t know you were in a different time zone. I take back my comment, you guys do have great support just wish that admob project came with a video tutorial with dialogue as to how to add ads to an existing app
you can check my AdMob template in my portfolio, it has a demo project and a user guide that explains how to add banners and interstitial ads to a swift app
I purchased the admob template already remember? My issue is I need a video showing where to place the code in an existing project. Your tutorial shows how to add ads to a new project friend
it doesn’t matter, it’s easy because your app still has viewDidLiad(), like new projects, that’s a default method so the user guide shows it and that’s where you should put initAdMobBanner() and the 4 lines of code that initialize the interstitial ad too. for the delegates, you must place them after ViewController class name (it’s just under the import statements on the top of the swift file). the rest of the code goes anywhere before the closure of the class, not inside viewDidLoad() or any other methods.
I’m going to spend some time with it, thanks for your help always
you’re welcome