Iphone cannot detect Bluetooth HC06

I have a simple code which i uploaded on the board and it is working with android. My android can detect the arduino bluetooth and it make a connection
But i cannot see my bluetooth arduino name in iphone
i am trying with iphone 6s
here is arduino code

#include <SoftwareSerial.h>

SoftwareSerial BLE_Shield(4,5);

void setup() {
// put your setup code here, to run once:

BLE_Shield.begin(9600);
Serial.print("AT+VERSION");

}

void loop() {
// put your main code here, to run repeatedly:
// See if new position data is available
if (BLE_Shield.available()) {
Serial.print(BLE_Shield.read()); // Write position to servo
}

}
the name of my bluetooth device is "ForceIT" which can be seen in android . it can communicate after connection. but iphone cannot search it

Hi the iphone is not compatible with the HC-05/06 module because of different bluetooth protocols which Iphone doesn't allow. Try looking for Iphone compatible arduino bluetooth modules on google.. The HM-10 is one such module that works, but there are plenty others you can look for as well..