当前位置: 编程技术>移动开发
本页文章导读:
▪菜鸟:介绍NSLog的使用 初学者:介绍NSLog的使用
可能你曾经有过Windows编程的经验,通常在你调试程序的时候,如果希望看到某个中间结果,你会习惯使用MessageBox来显示中间的结果。有了Cocoa的NSLog,你在写Cocoa.........
▪ 简单的滑动切换页面并且加下类似Ipone的切换效果 简单的滑动切换页面并且加上类似Ipone的切换效果
public class Main extends Activity implements OnGestureListener,
OnTouchListener {
// 一般不直接使用ViewAnimator而是使用它的两个子类ViewFlipper和ViewSwitcher。View.........
▪ 施用UIScrollView实现滚屏效果 使用UIScrollView实现滚屏效果
在一屏中手指滑动实现多个页面的滑动切换可使用UIScrollView来实现
@synthesize scrollView;
@synthesize pageControl;
// Implement viewDidLoad to do additional setup after loading the vie.........
[1]菜鸟:介绍NSLog的使用
来源: 互联网 发布时间: 2014-02-18
初学者:介绍NSLog的使用
可能你曾经有过Windows编程的经验,通常在你调试程序的时候,如果希望看到某个中间结果,你会习惯使用MessageBox来显示中间的结果。
有了Cocoa的NSLog,你在写Cocoa程序的时候,就可以无需每次都调用NSAlert来观察中间结果了。
NSLog的定义
NSLog定义在NSObjCRuntime.h中,如下所示:
void NSLog(NSString *format, …);
基本上,NSLog很像printf,同样会在console中输出显示结果。不同的是,传递进去的格式化字符是NSString的对象,而不是chat *这种字符串指针。
示例
NSLog可以如下面的方法使用:
NSLog (@"this is a test");
NSLog (@"string is :%@", string);
NSLog (@"x=%d, y=%d", 10, 20);
但是下面的写法是不行的:
int i = 12345;
NSLog( @"%@", i );
原因是, %@需要显示对象,而int i明显不是一个对象,要想正确显示,要写成:
int i = 12345;
NSLog( @"%d", i );
格式
NSLog的格式如下所示:
%@ 对象
%d, %i 整数
%u 无符整形
%f 浮点/双字
%x, %X 二进制整数
%o 八进制整数
%zu size_t
%p 指针
%e 浮点/双字 (科学计算)
%g 浮点/双字
%s C 字符串
%.*s Pascal字符串
%c 字符
%C unichar
%lld 64位长整数(long long)
%llu 无符64位长整数
%Lf 64位双字
可能你曾经有过Windows编程的经验,通常在你调试程序的时候,如果希望看到某个中间结果,你会习惯使用MessageBox来显示中间的结果。
有了Cocoa的NSLog,你在写Cocoa程序的时候,就可以无需每次都调用NSAlert来观察中间结果了。
NSLog的定义
NSLog定义在NSObjCRuntime.h中,如下所示:
void NSLog(NSString *format, …);
基本上,NSLog很像printf,同样会在console中输出显示结果。不同的是,传递进去的格式化字符是NSString的对象,而不是chat *这种字符串指针。
示例
NSLog可以如下面的方法使用:
NSLog (@"this is a test");
NSLog (@"string is :%@", string);
NSLog (@"x=%d, y=%d", 10, 20);
但是下面的写法是不行的:
int i = 12345;
NSLog( @"%@", i );
原因是, %@需要显示对象,而int i明显不是一个对象,要想正确显示,要写成:
int i = 12345;
NSLog( @"%d", i );
格式
NSLog的格式如下所示:
%@ 对象
%d, %i 整数
%u 无符整形
%f 浮点/双字
%x, %X 二进制整数
%o 八进制整数
%zu size_t
%p 指针
%e 浮点/双字 (科学计算)
%g 浮点/双字
%s C 字符串
%.*s Pascal字符串
%c 字符
%C unichar
%lld 64位长整数(long long)
%llu 无符64位长整数
%Lf 64位双字
[2] 简单的滑动切换页面并且加下类似Ipone的切换效果
来源: 互联网 发布时间: 2014-02-18
简单的滑动切换页面并且加上类似Ipone的切换效果
public class Main extends Activity implements OnGestureListener, OnTouchListener { // 一般不直接使用ViewAnimator而是使用它的两个子类ViewFlipper和ViewSwitcher。ViewFlipper可以用来指定FrameLayout内多个View之间的切换效果,可以一次指定也可以每次切换的时候都指定单独的效果。该类额外提供了如下几个函数: // isFlipping: 用来判断View切换是否正在进行 // setFilpInterval:设置View之间切换的时间间隔 // startFlipping:使用上面设置的时间间隔来开始切换所有的View,切换会循环进行 // stopFlipping: 停止View切换 private ViewFlipper viewFlipper; private GestureDetector gestureDetector; private Button pre1Button; private Button next1Button; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); init(); } private void init() { pre1Button = (Button) findViewById(R.id.preButton1); next1Button = (Button) findViewById(R.id.nextButton1); pre1Button.setOnTouchListener(this); next1Button.setOnTouchListener(this); gestureDetector = new GestureDetector(this); viewFlipper = (ViewFlipper) this.findViewById(R.id.ViewFlipper); } // GestureDetector.OnDoubleTapListener:用来通知DoubleTap事件,类似于鼠标的双击事件,该接口有如下三个回调函数: // // 1. onDoubleTap(MotionEvent e):通知DoubleTap手势, // 2. onDoubleTapEvent(MotionEvent // e):通知DoubleTap手势中的事件,包含down、up和move事件(这里指的是在双击之间发生的事件,例如在同一个地方双击会产生DoubleTap手势,而在DoubleTap手势里面还会发生down和up事件,这两个事件由该函数通知); // 3. onSingleTapConfirmed(MotionEvent // e):用来判定该次点击是SingleTap而不是DoubleTap,如果连续点击两次就是DoubleTap手势,如果只点击一次,OPhone系统等待一段时间后没有收到第二次点击则判定该次点击为SingleTap而不是DoubleTap,然后触发SingleTapConfirmed事件。 public boolean onDoubleTap(MotionEvent e) { if (viewFlipper.isFlipping()) { viewFlipper.stopFlipping(); } else { viewFlipper.startFlipping(); } return true; } @Override public boolean onTouchEvent(MotionEvent event) { return this.gestureDetector.onTouchEvent(event); } @Override public boolean onDown(MotionEvent e) { // down事件 return false; } public boolean onFling(// MotionEvent e1, // e1:第一个ACTION_DOWN事件(手指按下的那一点) MotionEvent e2, // e2:最后一个ACTION_MOVE事件 (手指松开的那一点) float velocityX,// velocityX:手指在x轴移动的速度 单位:像素/秒 float velocityY)// velocityY:手指在y轴移动的速度 单位:像素/秒 { // 滑动手势事件 if (e1.getX() - e2.getX() > 60) {// 向右滑动,下一页 // setOutAnimation: 设置View退出屏幕时候使用的动画,参数setInAnimation函数一样。 this.viewFlipper.setInAnimation(AnimationUtils.loadAnimation(this, R.anim.zoomin)); this.viewFlipper.setOutAnimation(AnimationUtils.loadAnimation(this, R.anim.zoomout)); this.viewFlipper.showNext();// 调用该函数来显示FrameLayout里面的下一个View。 return true; } else if (e1.getX() - e2.getX() < -60) {// 向左滑动,上一页 this.viewFlipper.setInAnimation(AnimationUtils.loadAnimation(this, R.anim.zoomin)); this.viewFlipper.setOutAnimation(AnimationUtils.loadAnimation(this, R.anim.zoomout)); this.viewFlipper.showPrevious();// 调用该函数来显示FrameLayout里面的上一个View。 return true; } return false; } @Override public void onLongPress(MotionEvent e) { // 长按事件 } @Override public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { // 在屏幕上拖动事件。 return false; } @Override public void onShowPress(MotionEvent e) { // down事件发生而move或则up还没发生前触发该事件; } @Override public boolean onSingleTapUp(MotionEvent e) { // 一次点击up事件; return false; } // 按钮触摸事件 public boolean onTouch(View v, MotionEvent event) { switch (v.getId()) { case R.id.preButton1: if (event.getAction() == MotionEvent.ACTION_DOWN) { // 按钮按下背景图片 // pre1Button.setBackgroundResource(R.drawable.pre_button1); } // 按钮up后设置背景图片,并滑动到前一页面 else if (event.getAction() == MotionEvent.ACTION_UP) { // pre1Button.setBackgroundResource(R.drawable.pre_button); // flipper.setInAnimation(AnimationUtils.loadAnimation(Main.this, // R.anim.push_right_in)); // // flipper.setOutAnimation(AnimationUtils.loadAnimation(Main.this,R.anim.push_right_out)); viewFlipper.showPrevious(); } break; case R.id.nextButton1: if (event.getAction() == MotionEvent.ACTION_DOWN) { // next1Button.setBackgroundResource(R.drawable.next_button1); } // 按钮up后设置背景图片,并滑动到后一页面 else if (event.getAction() == MotionEvent.ACTION_UP) { // next1Button.setBackgroundResource(R.drawable.next_button); // flipper.setInAnimation(AnimationUtils.loadAnimation(Main.this, // R.anim.push_left_in)); // // flipper.setOutAnimation(AnimationUtils.loadAnimation(Main.this,R.anim.push_left_out)); viewFlipper.showNext(); } break; default: break; } return false; } }
<?xml version="1.0" encoding="utf-8"?> <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ViewFlipper android:id="@+id/ViewFlipper" android:layout_width="fill_parent" android:layout_height="fill_parent"> <!-- 第 1 页 --> <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:background="#FFFFFF" android:layout_height="fill_parent"> <TextView android:text="第 1 页" android:textSize="35dp" android:textColor="#000000" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_x="115dp" android:layout_y="20dp" /> </AbsoluteLayout> <!-- 第 2 页 --> <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:background="#FFFF00" android:layout_height="fill_parent"> <TextView android:text="第 2 页" android:textSize="35dp" android:textColor="#000000" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_x="120dp" android:layout_y="20dp" /> </AbsoluteLayout> <!-- 第 3 页 --> <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:background="#99CC33" android:layout_height="fill_parent"> <TextView android:text="第 3 页" android:textSize="35dp" android:textColor="#000000" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_x="120dp" android:layout_y="20dp" /> </AbsoluteLayout> </ViewFlipper> <Button android:layout_width="wrap_content" android:text="上一页" android:gravity="center" android:textSize="20sp" android:layout_height="40dp" android:id="@+id/preButton1" android:layout_x="101dp" android:layout_y="300dp" /> <Button android:layout_width="wrap_content" android:text="下一页" android:layout_height="40dp" android:id="@+id/nextButton1" android:gravity="center" android:textSize="20sp" android:layout_x="182dp" android:layout_y="300dp" /> </AbsoluteLayout>
[3] 施用UIScrollView实现滚屏效果
来源: 互联网 发布时间: 2014-02-18
使用UIScrollView实现滚屏效果
在一屏中手指滑动实现多个页面的滑动切换可使用UIScrollView来实现 @synthesize scrollView; @synthesize pageControl; // Implement viewDidLoad to do additional setup after loading the view, typically from a nib. - (void)viewDidLoad { [super viewDidLoad]; scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0.0, 0.0, self.view.frame.size.width, self.view.frame.size.height)]; scrollView.userInteractionEnabled = YES; scrollView.directionalLockEnabled = YES; scrollView.pagingEnabled = YES; scrollView.showsVerticalScrollIndicator = NO; scrollView.showsHorizontalScrollIndicator = NO; scrollView.delegate = self; CGRect frame = self.view.frame; frame.origin.y = 0.0f; UIView* viewFirst = [[[UIView alloc] initWithFrame:frame] autorelease]; viewFirst.backgroundColor = [UIColor greenColor]; UIImage *image =[UIImage imageNamed:@"1.jpg"]; UIImageView* imageView = [[UIImageView alloc] initWithFrame:frame]; imageView.image = image; [viewFirst addSubview:imageView]; frame.origin.x += self.view.frame.size.width; UIView* viewSecond = [[[UIView alloc] initWithFrame:frame] autorelease]; //viewSecond.backgroundColor = [UIColor blueColor]; UITextView* textView = [[[UITextView alloc] initWithFrame:self.view.frame] autorelease]; textView.text = @"\n sadfsfasdfsdf" @"sddsffsdfsdf"; [viewSecond addSubview:textView]; frame.origin.x += self.view.frame.size.width; UIView* viewThird = [[[UIView alloc] initWithFrame:frame] autorelease]; //viewThird.backgroundColor = [UIColor redColor]; UIImage *image2 =[UIImage imageNamed:@"2.jpg"]; UIImageView* imageView2 = [[UIImageView alloc] initWithFrame:self.view.frame]; imageView2.image = image2; [viewThird addSubview:imageView2]; scrollView.contentSize = CGSizeMake(self.view.frame.size.width*3, self.view.frame.size.height); [scrollView addSubview:viewFirst]; [scrollView addSubview:viewSecond]; [scrollView addSubview:viewThird]; CGSize sizePageControl = CGSizeMake(120, 40); CGRect framePageControl = CGRectMake((self.view.frame.size.width-sizePageControl.width)/2, (self.view.frame.size.height-sizePageControl.height-40), sizePageControl.width, sizePageControl.height); pageControl = [[UIPageControl alloc] initWithFrame:framePageControl]; pageControl.hidesForSinglePage = YES; pageControl.userInteractionEnabled = NO; pageControl.backgroundColor = [UIColor clearColor]; pageControl.numberOfPages = 1; [self.view addSubview:scrollView]; [self.view addSubview:pageControl]; } 同时你的ViewController 要实现UIScrollViewDelegate 协议的如下方法, 根据scroll 更新UIPageControl(当然如过你用到UIPageControl的话就无所谓了...) - (void) scrollViewDidEndDecelerating:(UIScrollView *)scrollView { int index = fabs(scrollView.contentOffset.x)/self.view.frame.size.width; pageControl.currentPage = index; }
在一屏中手指滑动实现多个页面的滑动切换可使用UIScrollView来实现 @synthesize scrollView; @synthesize pageControl; // Implement viewDidLoad to do additional setup after loading the view, typically from a nib. - (void)viewDidLoad { [super viewDidLoad]; scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0.0, 0.0, self.view.frame.size.width, self.view.frame.size.height)]; scrollView.userInteractionEnabled = YES; scrollView.directionalLockEnabled = YES; scrollView.pagingEnabled = YES; scrollView.showsVerticalScrollIndicator = NO; scrollView.showsHorizontalScrollIndicator = NO; scrollView.delegate = self; CGRect frame = self.view.frame; frame.origin.y = 0.0f; UIView* viewFirst = [[[UIView alloc] initWithFrame:frame] autorelease]; viewFirst.backgroundColor = [UIColor greenColor]; UIImage *image =[UIImage imageNamed:@"1.jpg"]; UIImageView* imageView = [[UIImageView alloc] initWithFrame:frame]; imageView.image = image; [viewFirst addSubview:imageView]; frame.origin.x += self.view.frame.size.width; UIView* viewSecond = [[[UIView alloc] initWithFrame:frame] autorelease]; //viewSecond.backgroundColor = [UIColor blueColor]; UITextView* textView = [[[UITextView alloc] initWithFrame:self.view.frame] autorelease]; textView.text = @"\n sadfsfasdfsdf" @"sddsffsdfsdf"; [viewSecond addSubview:textView]; frame.origin.x += self.view.frame.size.width; UIView* viewThird = [[[UIView alloc] initWithFrame:frame] autorelease]; //viewThird.backgroundColor = [UIColor redColor]; UIImage *image2 =[UIImage imageNamed:@"2.jpg"]; UIImageView* imageView2 = [[UIImageView alloc] initWithFrame:self.view.frame]; imageView2.image = image2; [viewThird addSubview:imageView2]; scrollView.contentSize = CGSizeMake(self.view.frame.size.width*3, self.view.frame.size.height); [scrollView addSubview:viewFirst]; [scrollView addSubview:viewSecond]; [scrollView addSubview:viewThird]; CGSize sizePageControl = CGSizeMake(120, 40); CGRect framePageControl = CGRectMake((self.view.frame.size.width-sizePageControl.width)/2, (self.view.frame.size.height-sizePageControl.height-40), sizePageControl.width, sizePageControl.height); pageControl = [[UIPageControl alloc] initWithFrame:framePageControl]; pageControl.hidesForSinglePage = YES; pageControl.userInteractionEnabled = NO; pageControl.backgroundColor = [UIColor clearColor]; pageControl.numberOfPages = 1; [self.view addSubview:scrollView]; [self.view addSubview:pageControl]; } 同时你的ViewController 要实现UIScrollViewDelegate 协议的如下方法, 根据scroll 更新UIPageControl(当然如过你用到UIPageControl的话就无所谓了...) - (void) scrollViewDidEndDecelerating:(UIScrollView *)scrollView { int index = fabs(scrollView.contentOffset.x)/self.view.frame.size.width; pageControl.currentPage = index; }
最新技术文章: