大家圣诞快乐:)
我有一个指针问题。尽管我熟悉指针概念,但到目前为止,我还没有像这里描述的那样在 Objective-C 中使用指针。
我这样修改它:
int countSInteger = 10;
[self setHMSValues:countSInteger];
- (void) setHMSValues: (int*) timeCat {
*timeCat = *timeCat - 1;
}
但现在我收到了 EXC_BAD_ACCESS:
有圣诞老人的暗示吗?