In my application i have 8 files
ApplicationDelegate.h,ApplicationController.h and .m file for this
RecordDelegate.h, RecordController.h and .m file for this
i declared webview in Applicationcontroller
while running the application
webview load with main.html file in this i have button record when i click the button navigate to record.html file here i have record audio and record video buttons,
here when, i click to record audio it navigate to RecordController.xib file here i have completed the record operations what i want means after complete record i want to use ApplicationController webview .. and here i want to pass some values to javascript
in record voiddidload method i added the below code
ApplicationController *obj=[ApplicationController alloc]init];
[self.view addsubview:obj.Web_View];
it is not working any one know the reason
Do you have any queries let me know?
Thanks
Navigate to Application Controller from RecordController.
Application Controller has already webview in it so synthesis webview object in RecordController and pass the value to Application Controller when you navigate.