I\'m having a bit of a confusion on how to assign a value to a BOOL pointer? Here\'s my code:
- (void)locationManager:(CLLocationManager *)manager didUpdateT
You need to say
*initialBroadcast = YES;
initialBroadcast is a pointer aka memory address. The * gives access to the value at the memory address that the pointer holds. So initialBroadcast is a memory address, but *initialBroadcast is a boolean or char.