欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

iOS开发之一些实用小知识点总结

程序员文章站 2023-12-18 10:00:04
话不多说,直接进主题 一、防止uibutton,cell等重复点击 主要是快速点击button或者cell,所对应的action或者逻辑会走多次,例如:点击button...

话不多说,直接进主题

一、防止uibutton,cell等重复点击

主要是快速点击button或者cell,所对应的action或者逻辑会走多次,例如:点击button或者cell调用拨打电话的方法,会弹出拨打电话框好多次;这个对用户不太友好;问了下哥们儿,他给了个宏,目前算是解决这个问题;代码如下:

// 防止多次调用
#define kpreventrepeatclicktime(_seconds_) \
static bool shouldprevent; \
if (shouldprevent) return; \
shouldprevent = yes; \
dispatch_after(dispatch_time(dispatch_time_now, (int64_t)((_seconds_) * nsec_per_sec)), dispatch_get_main_queue(), ^{ \
shouldprevent = no; \
}); \

总的思路是设置一个bool变量,记录一下,延时更改下变量的值;使用:在所需要的button或者cell的action前调用即可:

kpreventrepeatclicktime(0.5);

二、获取当前视图最顶层的viewcontroller

获取当前视图最顶层的viewcontroller

+ (uiviewcontroller *)currentviewcontroller {
 uiwindow * window = [[uiapplication sharedapplication] keywindow];
 if (window.windowlevel != uiwindowlevelnormal){
  nsarray *windows = [[uiapplication sharedapplication] windows];
  for(uiwindow * tmpwin in windows){
   if (tmpwin.windowlevel == uiwindowlevelnormal){
    window = tmpwin;
    break;
   }
  }
 }
 uiviewcontroller *currentvc = window.rootviewcontroller;
 while (currentvc.presentedviewcontroller) {
  currentvc = currentvc.presentedviewcontroller;
 }
 if ([currentvc iskindofclass:[uitabbarcontroller class]]) {
  currentvc = [(uitabbarcontroller *)currentvc selectedviewcontroller];
 }
 if ([currentvc iskindofclass:[uinavigationcontroller class]]) {
  currentvc = [(uinavigationcontroller *)currentvc topviewcontroller];
 }
 return currentvc;
}

三、代码截图相关

截取指定的view:

/// 截屏
- (void)actionforscreenshotwith:(uiview *)aimview savephoto:(bool)savephoto {

 if (!aimview) return;

 uigraphicsbeginimagecontextwithoptions(aimview.bounds.size, no, 0.0f);
 [aimview.layer renderincontext: uigraphicsgetcurrentcontext()];
 uiimage* viewimage = uigraphicsgetimagefromcurrentimagecontext();

 uigraphicsendimagecontext();

 if (savephoto) {
  /// 保存到本地相册
  uiimagewritetosavedphotosalbum(viewimage, self, @selector(image:didfinishsavingwitherror:contextinfo:), null);
 }
}

保存图片的回调处理

- (void)image:(uiimage*)image didfinishsavingwitherror:(nserror*)error contextinfo:(void*)contextinfo{
 if (error) {
  nslog(@"保存失败,请重试");
 } else {
  nslog(@"保存成功");
 }
}

总结

以上就是这篇文章的全部内容了,本文还有许多不足,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。

上一篇:

下一篇: