IPad App Concept for iPad

What is the best method and technique for developing an iPad-like app? Can I use HTML 5 and CSS, including napkins, etc.?

What are the other methods?

+3
source share
4 answers

I tried hundreds of methods that sucked in memory, required a million lines of code, and were at least 200 MB. Last night I had a brilliant genius.

  • use storyboards and a gesture to bring / modal / Cross Dissolve transition to and from each ViewController
  • instead of trying to extract a pdf file or image, drop the text into an html file and use the inline HTML link
  • specify your index as buttons that appear in each view
  • BONUS: "tap" , 2 , , .

2

-(void)viewDidLoad {
[super viewDidLoad];
NSString* filePath = [[NSBundle mainBundle]
          pathForResource:@"yourtexthere"
          ofType:@"html"
          inDirectory:@"folderwhereyousavedit"];
NSURL* fileURL = [[NSURL fileURLWithPath:filePath];
NSURLRequest*request = [NSURLRequest requestWithURL:fileURL];
[webView loadRequest:request];
}

.h

@property (weak, nonatomic) IBOutlet UIWebView *webView;

, , .m viewController... Apple Newsstand.

, .

, .

+2

HTML5 CSS , iBooks. , , OpenGL .

.

0

pdf- .

, .

libray, FastPdfKit, . FastPdfKit.com github.

0

, , html5, Touch CSS. , css3, . , , CSS.

. : http://stacks.acadnet.ca/

tumbl, . , .

- (2 ), ​​ .

0

Source: https://habr.com/ru/post/1741332/


All Articles