ios CCFuntion.m

objectivec 复制代码
//
//  CCFuntion.h
//  CCFC
//
//  Created by xichen on 11-12-30.
//  Copyright 2011 ccteam. All rights reserved.
//


#import <Foundation/Foundation.h>




@interface CCFuntion : NSObject 
{


}


// returns whether the function exists or not
+ (BOOL)isFuntionExist:(IMP)funcPtr;




@end
cpp 复制代码
//
//  CCFuntion.m
//  CCFC
//
//  Created by xichen on 11-12-30.
//  Copyright 2011 ccteam. All rights reserved.
//


#import "CCFuntion.h"




@implementation CCFuntion


// returns whether the function exists or not
+ (BOOL)isFuntionExist:(IMP)funcPtr
{
        return funcPtr != NULL;
}


@end

微风不燥,阳光正好,你就像风一样经过这里,愿你停留的片刻温暖舒心。

我是程序员小迷(致力于C、C++、Java、Kotlin、Android、Shell、JavaScript、TypeScript、Python等编程技术的技巧经验分享),若作品对您有帮助,请关注、分享、点赞、收藏、在看、喜欢,您的支持是我们为您提供帮助的最大动力。

欢迎关注。助您在编程路上越走越好!

相关推荐
沐知全栈开发31 分钟前
NumPy 统计函数
开发语言
芝麻开门-新起点1 小时前
Android 和 iOS 系统版本及开发适配
android·ios·cocoa
青光键主1 小时前
C语言内功强化之const修饰指针
c语言·开发语言
2501_915918411 小时前
iOS描述文件功能解析
android·macos·ios·小程序·uni-app·cocoa·iphone
骷大人2 小时前
php安装skywalking_agent
开发语言·php·skywalking
恋恋西风2 小时前
Qt 打开文件列表选择文件,实现拖拽方式打开文件,拖拽加载
开发语言·qt
闲人编程2 小时前
使用Python进行量化交易入门
开发语言·python·统计分析·lambda·量化·codecapsule
移远通信3 小时前
常见问题解答
开发语言·php
初见无风3 小时前
3.1 Lua代码中的元表与元方法
开发语言·lua·lua5.4
逻极3 小时前
Rust流程控制(上):if_else与match模式匹配
开发语言·后端·rust