- 浏览: 127123 次
- 性别:
- 来自: 武汉
最新评论
-
f284597916:
楼主,你用的比较老的版本了,现在的版本是有区分平台的进行消息发 ...
关于ios极光推送server端注意的地方 -
terrymanu:
非常感谢楼主抛砖引玉,提供了这个问题的解决方案。我根据你提供的 ...
使用Dbunit+Unitils出现 org.dbunit.dataset.NoSuchColumnException 的解决方法 -
lfy2008:
楼主有重新编译的jar包没?发一个 。Unitils3.3的m ...
使用Dbunit+Unitils出现 org.dbunit.dataset.NoSuchColumnException 的解决方法 -
javafansmagic:
用Unitils 3.3默认依赖的dbunit 2.2.2版本 ...
使用Dbunit+Unitils出现 org.dbunit.dataset.NoSuchColumnException 的解决方法 -
zfanxu:
happyJavaer 写道求解决方案啊,除了这两种之外楼主想 ...
使用Dbunit+Unitils出现 org.dbunit.dataset.NoSuchColumnException 的解决方法
文章列表
Reasons
11.13: Apps that link to external mechanisms for purchases or subscriptions to be used in the App, such as a "buy" button that goes to a web site to purchase a digital book, will be rejected
11.13
Upon further review, we found that your app provides access to account registr ...
升级MAC OS X自带的SVN客户端
- 博客分类:
- IOS
http://blog.sina.com.cn/s/blog_a0f3ea980101c0y0.html
http://www.apblog.cn/blog/2013/09/15/ios-push-notification-test-on-apple-production/
http://developer.xg.qq.com/index.php/AD_Hoc模式验证生产证书
最好用的Java APNS类库
- 博客分类:
- IOS
http://ramosli.iteye.com/blog/1955465
iOS7自定义back按钮和pop交互手势
- 博客分类:
- IOS
Clambake for iPhone有一个回退按钮在所有的导航条上.这是一个简单的没有文字箭头.
实现一个自定义按钮是简单的.类似这个设置controller 的navigationItem一个leftBarButtonItem.
- (void)viewDidLoad
2 {
3 self.navigationItem.leftBarButtonItem = [self backButton];
4 }
5
6 - (UIBarButtonItem *)backButton
7 {
8 UIImage *image = [UIImage i ...
IOS TextField 银行卡号格式化
- 博客分类:
- IOS
-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
if (textField == self.text_cardno) {
NSString *text = [self.text_cardno text];
NSCharacterSet *characterSet = [NSCharacterSet characterS ...
http://blog.csdn.net/mad1989/article/details/8699147
可以试试这样:
- (UIViewController*)topViewController {
return [self topViewControllerWithRootViewController:[UIApplication sharedApplication].keyWindow.rootViewController];
}
- (UIViewController*)topViewControllerWithRootViewController:(UIViewController*)rootViewController {
if ([rootView ...
Caused by: javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:882)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1188)
at com. ...
ehcache工具类
- 博客分类:
- cache
import net.sf.ehcache.CacheManager;
import net.sf.ehcache.Ehcache;
import net.sf.ehcache.Element;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class CacheBuilder {
/**
* 日志
*/
private static final Logger LOGGER = LoggerFactory
.getLogger(CacheBuilder.class); ...
IOS推送服务端代码-示例(java)
- 博客分类:
- IOS
package org.hyw.push.servlet;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import ...
IOS---UIView添加点击事件
- 博客分类:
- error-ios
https://github.com/jakemarsh/JMWhenTapped
第一步:
使用软件QuickTime Player录屏幕视频,创建方式选择新建屏幕录制:
选择区域录制,录好保存后,就需要转gif,需要另外一个软件。
第二步:
使用GIFBrewery软件创建gif,在appstore上是收费的,大家可以在网上找免费的,这个还是比较好用的。
大家一看就会用了:
设置开始和结束,然后Create GIF
ok!
http://blog.csdn.net/rhljiayou/article/details/13659667
今天试用了极光推送API
用它是因为,大多数人说它的文档是最全的,但是用过之后,发现关于IOS的文档,还是很不够,导致走了一点弯路!
特别是服务端的代码:https://github.com/jpush/jpush-api-java-client for java
JPushClient jpushClient = new JPushClient(masterSecret, appKey, 0, DeviceEnum.Android, false);
CustomMessageParams params = new CustomMessageParams();
params.se ...
编译错误 compile error:
fatal error: file
'/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator6.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h' has been modified since the precompiled header was built
the answer o ...