22018版変更なしで、ビルド、実行 OK。(現行は、swift 4.2)
convert to swift5
22018版変更なしで、ビルド、実行 OK。(現行は、swift 4.2)
convert to swift5
2020.11.2
以下メッセージ
Parse error: syntax error, unexpected T_STRING in /////www/iphone/wp-content/plugins/google-analytics-dashboard-for-wp/includes/gutenberg/headline-tool/headline-tool.php on line 3
リモートにて、plugins内にあるgoogle関連ファイルを削除して復旧!!
2020.10.08
finderにダウンロードフォルダ等が表示されない。
以下により解決。
~/Library/Preferences/com.apple.finder.plist
↑を削除して、正常表示!!
ヒント:アプリを本当に便利にしたい場合sourceTypeは、イメージピッカーコントローラーのプロパティをに設定して、.cameraユーザーが既存の写真をインポートするのではなく、新しい写真を撮れるようにします。
ピンをドロップする方法とマップビューの中心座標を使用する方法を理解しているため、ユーザーの位置を取得してテキストと画像と共に保存する方法を理解するだけです。
import CoreLocation
class LocationFetcher: NSObject, CLLocationManagerDelegate {
let manager = CLLocationManager()
var lastKnownLocation: CLLocationCoordinate2D?
override init() {
super.init()
manager.delegate = self
}
func start() {
manager.requestWhenInUseAuthorization()
manager.startUpdatingLocation()
}
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
lastKnownLocation = locations.first?.coordinate
}
}
struct ContentView: View {
let locationFetcher = LocationFetcher()
var body: some View {
VStack {
Button("Start Tracking Location") {
self.locationFetcher.start()
}
Button("Read Location") {
if let location = self.locationFetcher.lastKnownLocation {
print("Your location is \(location)")
} else {
print("Your location is unknown")
}
}
}
}
}
平成31年2月23日(土曜日)
iphone バッテリー交換につき、再度xcodeよりインストール、以下以外は、そのままOK!!
(予報士+、用語集、)
平成31年2月21日(木曜日)
apple
↑リンク
最終的には、上のリンクの問題がある場合を適用し、以下メッセージ解決!!
キモは、
平成30年12月9日(日曜日)
itunes connectのApp information内に記載有り。
平成30年5月6日(日曜日)
coredata(経過版 未完成)
forecasterplus_2018_m_detall_with_core_A
forecasterplus_2018_m_detall_with_core_B_CSV
coredata(完成版 基本版 AppDelegate、Predicateまで)
csv2core_AppDelegate
CollectionView版
csv2core_CollectionView_searchBar_ A(経過版 動作可)
csv2core_CollectionView_searchBar_ B(動作)
Table版
csv2core_master_detail(searchbar無し 動作)
csv2core_master_detail_searchBar (search-bar table有り 動作)
csv2core_master_detail_searchBar_A(searchbar navigation 有り 動作)
平成28年11月6日(日曜日)
平成28年9月9日(金曜日)