review

How to send the user directly to the review page on The App Store?

会有一股神秘感。 提交于 2019-12-02 18:51:17
Up to now (with iOS < 6.0), I used the following URL and code to send the user directly to the review page of my app (to rate it with 5 stars and post a friendly comment :)): NSString *stringUrl = @"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=XXXXXXXX&pageNumber=0&sortOrdering=1&type=Purple+Software&mt=8"; NSURL *url = [NSURL URLWithString:stringUrl]; [[UIApplication sharedApplication] openURL:url]; This code doesn't work anymore when I run my app on a device with iOS 6 (and the new appstore of iOS 6). The appstore opens but then I have got an alert saying

Protect from fake reviews on Google Play [closed]

风流意气都作罢 提交于 2019-12-02 17:49:34
I published my Android app to Google Play and everything was fine. I got about 5000 user reviews with an average 4.6 mark. But at some moment I started getting lowest mark with an insane speed. Several hundred 1 marks during 5 days. So my rating fell to 4.3. There were no complains from users, no comments, just a huge number of lowest marks. I suspect these were fake reviews. Probably paid by competitors. Is there any way to identify that? To prevent that? Does Google protect us from fake reviews in any way? I think the best thing to do is contact Google and make them aware of the issue. There

How to Add “Write a Review” / “Rate Us” Feature to My App?

喜欢而已 提交于 2019-12-02 14:04:40
I wish to add some sort of a "Write a Review" or "Rate Us" feature to my app so my customers can easily rate and review my app. Best practice I can think of is to have some sort of pop-up or open a UIWebView within my app so the user is not kicked off of my app while opening the App Store application as done in: [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.com/apps/myAppName"]]; Does anyone knows of a way to do that? StoreKit API (iOS 10.3 and up) As of iOS 10.3, the StoreKit API provides a way to request a review on the App Store without leaving your app.

Where can I learn jQuery? Is it worth it?

怎甘沉沦 提交于 2019-12-02 13:46:25
I've had a lot of good experiences learning about web development on w3schools.com . It's hit or miss, I know, but the PHP and CSS sections specifically have proven very useful for reference. Anyway, I was wondering if there was a similar site for jQuery . I'm interested in learning, but I need it to be online/searchable, so I can refer back to it easily when I need the information in the future. Also, as a brief aside, is jQuery worth learning? Or should I look at different JavaScript libraries? I know Jeff uses jQuery on Stack Overflow and it seems to be working well. Thanks! Edit : jQuery's

Are there RSS feeds for iOS apps' reviews on the app store?

徘徊边缘 提交于 2019-11-30 13:58:05
问题 I am interested in getting an RSS feed for new customer reviews for my app on the app store, does Apple provide an RSS feed for new app reviews? 回答1: There are indeed feeds of App Store reviews by country. Here's an example from my app (Snapix): https://itunes.apple.com/us/rss/customerreviews/id=471339479/sortBy=mostRecent/xml 回答2: Apple doesn't, but there are third parties that do. I use AppComments Apple has since added an RSS feed, see Thundertron's answer below 来源: https://stackoverflow

Are there RSS feeds for iOS apps' reviews on the app store?

偶尔善良 提交于 2019-11-30 08:56:59
I am interested in getting an RSS feed for new customer reviews for my app on the app store, does Apple provide an RSS feed for new app reviews? There are indeed feeds of App Store reviews by country. Here's an example from my app (Snapix): https://itunes.apple.com/us/rss/customerreviews/id=471339479/sortBy=mostRecent/xml Apple doesn't, but there are third parties that do. I use AppComments Apple has since added an RSS feed, see Thundertron's answer below 来源: https://stackoverflow.com/questions/5891466/are-there-rss-feeds-for-ios-apps-reviews-on-the-app-store

In-app Review Link

做~自己de王妃 提交于 2019-11-29 14:52:55
问题 I am trying to link directly from my app to the review page of an app. This works perfectly with some of my App ID's, like this one [375031865]: NSString *reviewURL = @"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=375031865&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software"; [[UIApplication sharedApplication] openURL:[NSURL URLWithString:reviewURL]]; This also works (Same APP ID, different link format): NSString *reviewURL = @"itms

Gerrit代码Review入门实战

我们两清 提交于 2019-11-28 22:21:20
代码审核(Code Review)是软件研发质量保障机制中非常重要的一环,但在实际项目执行过程中,却因为种种原因被Delay甚至是忽略。在实践中,给大家推荐一款免费、开放源代码的代码审查软件Gerrit。 1、Why Code Review Code Review是什么 Code Review最直观的解释即看代码。常规的做法为自己看,有时代码逻辑问题可能自己看不出来,需要找同事一起看,在大家知识体系相对平均的情况下可能需要花钱专门的公司帮助查看。 Code Review需要看哪些?对于刚入职场或者刚接触到Coding的新人来说,代码风格是比较重要的一块。除此之外,编码规范及代码结构写法,框架和工具的选型,具体项目的业务逻辑,安全隐患,性能问题等都可以通过review的方式发现。Code Review从前往后大致分为结对编程,提交代码后,测试之前,发版之前,发版之后等几个阶段,越往后,Code Review的效果越差,修复的成本也越来越高。 为什么一定要做入库前Code Review 首先,代码审查的最大的功用是纯社会性的。如果你在编程,而且知道将会有同事检查你的代码,你编程态度就完全不一样了。你写出的代码将更加整洁,有更好的注释和程序结构。 其次,偷懒是人的天性,从节约成本的角度考虑,大家一般会选择在测试之前无限制的Delay Code Review。入库前做Code

Code Review最佳实践

╄→гoц情女王★ 提交于 2019-11-28 22:21:10
Code Review最佳实践 原文链接 : Code Review Best Practices 原文作者 : Kevin London 译文出自 : 开发技术前线 www.devtf.cn 译者 : ayyb1988 校对者: chaossss 状态 : 完成 在Wiredrive上,我们做了很多的Code Review。在此之前我从来没有做过,这对于我来说是一个全新的体验,下面来总结一下在Code Review中做的事情以及说说Code Review的最好方式。 简单的说,Code Review是开发者之间讨论修改代码来解决问题的过程。很多文章谈论了Code Review的诸多好处,包括知识共享,代码的质量,开发者的成长,却很少讨论审查什么、如何审查。 审查的内容 体系结构和代码设计 单一职责原则: 一个类有且只能一个职责。我通常使用这个原则去衡量,如果我们必须使用“和”来描述一个方法做的事情,这可能在抽象层上出了问题。 开闭原则 对于面向对象的语言,对象在可扩展方面开放、对在修改方面关闭。如果我们需要添加另外的内容会怎样? 代码复用:根据 “三振法” ,如果代码被复制一次,虽然不喜欢这种方式,但通常没什么问题。但如果再一次被复制,就应该通过提取公共的部分来重构它。 换位考虑 ,如果换位考虑,这行代码是否有问题?用这种模式是否可以发现代码中的问题。 用更好的代码:

Im not sure how to get the data from my text field

送分小仙女□ 提交于 2019-11-28 14:40:01
I want to get the data from my textfield and set it to int h. and have that change the size of the rectangle im drawing, but im not sure how to go get the data from the textfield, I tired using e.getsource in actionperfomred but it cannot find my textfield. My code is below: import java.awt.*; import java.awt.event.*; import java.awt.image.*; import java.io.*; import javax.imageio.*; import javax.swing.*; import java.net.*; import java.sql.*; import java.lang.Object; import java.awt.Graphics; import java.awt.Graphics2D; /** * This class demonstrates how to load an Image from an external file *