I am having Swift code, need to get UpperBound and lowerBound. But in Objective C, I am not able to see the property or function for both Upper and lower Bound to get its value.
Snippet:
{
let upperBound = firstAppearance?.upperBound;
let lowerBound = firstAppearance?.lowerBound;
}
Where firstAppearence is Range.
Can anyone help me to get the Upper and lower Bound value from NSRange using Objective-C.