I have a requirement like integrate hybrid app into ios application? Is it possible or not? Currently iOS application accessing SUP server as middileware and downloading the hibrid app. Now i want to change as look and feel like native. How to custamize(integrate) the both codes. Thanks in advance..
Asked
Active
Viewed 504 times
1
-
an app can be web based, native, or hybrid, but being at the same time hybrid and native is a nonsense. Either you change it to a real native one, either you customize it to look like a native one. – Jerome Diaz Oct 17 '13 at 06:53
-
okay, if i want to custmize it like native what needs to do? – simbesi.com Oct 17 '13 at 06:56
-
yes i did the customization, how to call or initiate the hybrid app? – simbesi.com Oct 17 '13 at 09:13
1 Answers
1
I find the solution for this issue. Just follow the below links:
Here as a developer we have to take bit care of 2 things. In these steps chance to do mistake:
1) Adding hybrid app folder: While adding the hybrid app folder should select second option.
2) Resource path for hybrid app:
suppose to give resource path like this in iOS.
NSString *path = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"HybridAppFolderName"];
But here just give to : NSString *path = @"HybridAppFolderName";
I hope this will help to you..

simbesi.com
- 1,539
- 3
- 17
- 27