サルでもわかるWEBプログラミング

フリーソフトのみでホームページ作成

ユーザ用ツール

サイト用ツール


00.swift:04.watchos


差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン前のリビジョン
次のリビジョン
前のリビジョン
00.swift:04.watchos [2021/10/05] – [ナビゲーション] adash33300.swift:04.watchos [2021/10/07] (現在) – [ナビゲーション] adash333
行 69: 行 69:
 2021年3月10日 2021年3月10日
  
 +===== Hello World =====
 +https://i-doctor.sakura.ne.jp/font/?p=47344
 +WindowsユーザーがMacBookAirを購入してみた(2)XcodeインストールとiOSとwatchOSのアップデートに合計10時間かけてAppleWatch実機で”HelloWorld”
 +2021年9月28日
 +
 +https://i-doctor.sakura.ne.jp/font/?p=47629
 +AppleWatchアプリを作ってみる(1)ボタンをタップするとテキストが変化
 +2021年10月6日
 ===== ナビゲーション ===== ===== ナビゲーション =====
  
行 78: 行 86:
 How to develop page based navigation UI on Apple Watch How to develop page based navigation UI on Apple Watch
 For watchOS 7 and watchOS 6 For watchOS 7 and watchOS 6
 +
 +https://www.yururiwork.net/archives/1101
 +
 +2020.09.15
 +【SwiftUI】PageTabViewStyle(UIPageViewController)の使い方【Xcode12&iOS14】
 +
 +<code>
 +//original code from https://app-o-mat.com/article/watchkit/develop-page-based-navigation-apple-watch-app
 +import SwiftUI
 +
 +struct ContentView: View {
 +    var body: some Scene {
 +    WindowGroup {
 +      // These Views will end up in pages.
 +      TabView {
 +        Text("Page One")
 +        Text("Page Two")
 +        Text("Page Three")
 +      }
 +      .tabViewStyle(PageTabViewStyle())
 +    }
 +  }
 +}
 +</code>
 +
 +
 +
 +https://www.hackingwithswift.com/quick-start/swiftui/how-to-push-a-new-view-onto-a-navigationview
 +How to push a new view onto a NavigationView
 +September 3rd 2021
 +
 +<code>
 +// original code from https://www.hackingwithswift.com/quick-start/swiftui/how-to-push-a-new-view-onto-a-navigationview
 +struct SecondView: View {
 +    var body: some View {
 +        Text("This is the detail view")
 +    }
 +}
 +
 +struct ContentView: View {
 +    var body: some View {
 +        NavigationView {
 +            VStack {
 +                NavigationLink(destination: SecondView()) {
 +                    Text("Show Detail View")
 +                }
 +                .navigationTitle("Navigation")
 +            }
 +        }
 +    }
 +}
 +</code>
 +
 +
 +
 +
 +
 +
 +
 +
 +===== map =====
 +
 +https://ez-net.jp/article/8C/ylktGR5J/5ZZKjSNrNQac/
 +簡単な Apple Watch アプリを初めて作ってみる
 +Apple Watch アプリプログラミング 
 +Apple Watch  Swift 1.1  Xcode 6.2
 +
 +
 +https://swiftwithmajid.com/2020/07/29/using-mapkit-with-swiftui/
 +Using MapKit with SwiftUI
 +29 Jul 2020
 +
 +https://www.yururiwork.net/archives/1234
 +2020.12.01
 +SwiftUI で Map を表示する手順
 +
 +===== Your maximum App ID limit has been reached. You may create up to 10 App IDs every 7 days. =====
 +Communication with Apple failed. Your maximum App ID limit has been reached. You may create up to 10 App IDs every 7 days.
 +
 +https://izanagiblog.com/archives/511
 +Xcode「Your maximum App ID limit 〜」とは?
 +
 +
 +AppID
 +Bundle ID 
 +
 +https://qiita.com/miyamotok0105/items/f24a4e10a2877ae70bc4
 +@miyamotok0105
 +2017年08月27日に更新
 +バンドルID(Bundle identifier)とは
 +
 +
 +
 +https://apptopi.jp/2019/12/29/appleid-multiple/
 +AppleIDは複数作成できる?複数アカウントのメリット&作成方法
 +→ AppleIDは複数作成できるが、異なるメールアドレスが必要。
 +
 +
 +
  
  


00.swift/04.watchos.1633417167.txt.gz · 最終更新: 2021/10/05 by adash333

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki