I decided to switch from manually installing the Estimote SDK to doing so with cocoapods. After installing it with cocoa, I receive the following error.
NSInvalidArgumentException', reason: '-[ESTBeaconRegion initRegionWithIdentifier:]: unrecognized selector sent to instance 0x17332200'
The exact same code worked before.
Any idea why initRegionWithIdentifier is not recognized?
Meanwhile, could you upload the code that is supposed to be in the region(ish) .h file in the EstimoteSDK so that I can compare with what I got through Cooapods?
I am seeing this issue, after setting up with CocoaPods tonight. I have also tried setting up manually, and received the same error. Is this code still valid?
Method initRegionWithIdentifier was removed from ESTBeaconRegion when Estimote allowed Proximity UUID value to be changed. You should use initWithProximityUUID:identifier: method instead.
still talk about initRegionWithIdentifier - as a new starter to the SDK - a little unsure what NSUUID to use for the equivalent to initRegionWithIdentifier:@"EstimoteSampleRegion" when switching to initWithProximityUUID methods