views:

327

answers:

4

I tried FeedbackReporter.framework from vafer.org but it doesn't want to work. :-/
So any suggestions for great Cocoa feedback frameworks?

+2  A: 

Try this one from Jon Rentzsch:

http://github.com/rentzsch/jrfeedbackprovider/tree

It's a good start.

danielpunkass
+1  A: 

UKCrashReporter handles detecting and submitting crash logs (e.g. at app startup) and submitting feedback from within the app. I've been very happy with it.

Barry Wark
A: 

I've never used it, but apparently the author of Feedback Reporter monitors Stack Overflow and will try to help if you bother explain your problem.

benzado
Every time I want to call a [[FRFeedbackReporter sharedReporter] sendFeedback] my app is killed. What's making me wonder is: [FRFeedbackReporter sharedReporter != nil] :-/
papr
A: 

There is also OpenFeedback at http://code.google.com/p/appcaster/. This also includes Appcaster which you could find useful. I personally ended up going with JRFeedback.

Jon Steinmetz