by this, you can get mobile Network code, mobile country code . from these values
you can specify which sim name is this.
CTTelephonyNetworkInfo* info = [[CTTelephonyNetworkInfo alloc] init];
CTCarrier* carrier = info.subscriberCellularProvider;
NSString *mobileCountryCode = carrier.mobileCountryCode;
NSString *carrierName = carrier.carrierName;
NSString *isoCountryCode = carrier.isoCountryCode;
NSString *mobileNetworkCode = carrier.mobileNetworkCode;
and you can make web service for this to specify which carrier name of the network, this parameter belongs to.
these parameters can be uniquely identified from this wikipedia.
for example, my country code is "410", my carrier network is "06" and it correctly identifies my carrier name.
I was also stuck at the same issue and now solved