how can i develop the custom screen unlock for iphone as the one working in case of passcode lock active mode?
I'm unsure about your question. Are you trying to develop a replacement for the custom unlock screen, or are you just trying to emulate the slider/passcode in your own app?
The former isn't possible. Apple will only allow the development of applications that are launched on-demand by the user: you cannot overwrite any of the things that Apple has developed.
As for the latter, I'm sure it's possible. Please try to be more clear exactly what you are trying to accomplish.
If you mean something like the pin pad that shows up on 1password look at the UIApplicationDelegate protocol's applicationWillResignActive:
and applicationDidBecomeActive:
methods. These will be called when the iPhone is locked or unlocked respectively. You could then use them to switch the current view to an unlock pin pad type view of your own design.