我有这个添加到我的项目工作区的按钮类。我有
linker error ( Apple Mach-o Linker Error)
然后我又打开了一个新项目并添加了这个类。在我的 ViewController.h
#import <UIKit/UIKit.h>
#import <UIView+Glow.h>
@interface ViewController:UIViewController
@property(non atomic,strong) IBOutlet UIView *testView;
end
在我的 ViewController.m
添加的是屏幕截图
#importViewController.h
-(void) viewDidLoad{
[super viewDidLoad];
[testView startGlowing]
}
我有
*unrecognized selector sent to instance error
这是我建议你使用秘密实验室制作的 UIView 的 Glow Category的课程。
关于如何调用这个类的任何建议?
附件是问题的截图