LoginSignup
2
2

More than 5 years have passed since last update.

[iBooks Author] HTMLウィジェットの制作はじめました

Posted at

Linux使いがMac始めました。

HTMLウィジェットの作り方

公式ヘルプが2つあるの、なんでだろう。

iBooks Author:HTML ウィジェット作成について
iBooks Author での HTML ウィジェット作成について

公式ヘルプに従ったInfo.plist

Info.plist.jade
doctype xml
doctype plist PUBLIC "-//Apple//DTD PLIST 1.0//EN""http://www.apple.com/DTDs/PropertyList-1.0.dtd"

plist(version="1.0")
  dict
    key CFBundleDevelopmentRegion
    string English

    key CFBundleDevelopmentRegion
    string English

    key CFBundleDisplayName
    string Hello World

    key CFBundleIdentifier
    string com.apple.widget.HelloWorld

    key CFBundleName
    string Hello World

    key CFBundleShortVersionString
    string 1.0

    key CFBundleVersion
    string 1.0

    key Height
    integer 768

    key MainHTML
    string HelloWorld.html

    key Width
    integer 1024

    key IBNotifiesOnReady
    true/

参考文献

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2