//点击其他地方,键盘收起- (void)touchesEnded:(NSSet *)touches
withEvent:(UIEvent *)event{ [super touchesEnded:touches withEvent:event];
[self.viewendEditing:YE.....
分类:
其他好文 时间:
2014-06-16 06:58:58
阅读次数:
163
使用了Amazon AWS EC2免费云空间,数据库实例采用Amazon RDS。原来在Windows Server上有一个存在大量数据的MySQL数据库。现在需要在Amazon RDS上还原这个MySQL数据库,勾掉Views(因为它会要求SUPER权限,而Master User无此权限,毕竟是托...
分类:
数据库 时间:
2014-06-15 22:54:13
阅读次数:
483
本教程使用的是MySQL5.0版本一路下一步安装,到3个选项这里选择自定义在“MySQL Server(MySQL服务器)”上左键单击,选择“This feature, and all subfeatures, will be installed on local hard drive.”,即“此部...
分类:
数据库 时间:
2014-06-15 22:33:38
阅读次数:
359
Java Bean:
package xml;
public class Person {
private String name ;
private int age ;
public Person(String name, int age) {
super();
this.name = name;
this.age = age;
}
public String getNam...
分类:
编程语言 时间:
2014-06-15 17:52:53
阅读次数:
255
短信界面没有关闭的情况下,在设置中进行操作,短信设置界面中不会进行刷新。因此在当MessagingPreferenceActivity处于活动(onResume)的时候重新初始化,添加代码如下:
protected void onResume() {
super.onResume();
loadPrefs();
// Si...
分类:
其他好文 时间:
2014-06-15 16:13:37
阅读次数:
169
一个Featureclass可以是Shapefile Feature Class、Personal Geodatabase Feature Class、File Geodatabase Feature Class等多种选择。判断其类型可从以下接口中获得。1.FeatureLayer的话,可以直接从I...
分类:
其他好文 时间:
2014-06-14 20:11:57
阅读次数:
517
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
File path = Environment.getExternalStorageDirectory();
/*StatFs...
分类:
其他好文 时间:
2014-06-14 00:56:28
阅读次数:
344
- (void)viewDidLoad{ [super viewDidLoad];
//创建UIActivityIndicatorView并设置样式:WhiteLarge为37 * 37,Gray和White为20 * 20
_activityIndicatorView =...
分类:
其他好文 时间:
2014-06-13 15:44:23
阅读次数:
217
- (void)viewDidLoad{ [super viewDidLoad]; // Do any
additional setup after loading the view. dispatch_queue_t queue =
dispatch_get_global...
分类:
其他好文 时间:
2014-06-12 13:02:38
阅读次数:
225