1、设置按钮被点中的高亮光晕效果代码如下:
[cancelButton setShowsTouchWhenHighlighted:YES];
2、按钮扩大触摸响应区域
原来代码如下:menuBtn.frame = CGRectMake(4, 8, 44, 28);扩大触摸区域代码如下:
[menuBtn setImage:[PYUtiles imageFromFile:@"MenuBtn.png"] forState:UIControlStateNormal];
[menuBtn setFrame:CGRectMake(0, 0, 48, 44)];
[menuBtn setContentMode:UIViewContentModeCenter];
原理,扩大button的frame rect,并且将图片设置成居中即可
注意,这边要是setImage,setBackgroundImage不行,会扩大图片到整个响应区域
view进入和退出的动画
1、UIViewController的presentModalViewController可做从下往上的进进入和退出
2、UINavigationController 的pushViewController可以从右往左一层层进入和退出
3、给UIView设置动画,可以做任何方向的进入和退出效果,例如:
[UIView beginAnimations:@"ViewFlip" context:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
photoCommentViewControl.view.frame = CGRectMake(0, 0, 320, 480);
[UIView animateWithDuration:1.0 animations:^{photoCommentViewControl.view.frame = CGRectMake(320, 0, 320, 480);}
completion:^(BOOL finished){
}];
[UIView commitAnimations];
上面代码中的view会从0,0点移动到320,0,从左向右移出屏幕
1. 取/data/data/cn.com.mm.pic.love/files 的代码
this.getFilesDir().toString()
2. 取/sdcard 的代码
Environment.getExternalStorageDirectory()
3 。取string.xml 中 ID的方法 的代码
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_url">http://ssssssssssssssss.com/app.php</string>
</resources>
getResources().getString(R.string.app_url)