swift4」カテゴリーアーカイブ

FlipsideViewControllerDelegate2

平成30年3月3日(土曜日)

MapvFlipViewController.h

@class MapvFlipViewController;
// ここを修正 2追加
@protocol FlipsideViewControllerDelegate2
– (void)flipsideViewControllerDidFinish:(MapvFlipViewController *)controller;
@end

@interface MapvFlipViewController : UIViewController{
NSString *Mapflip_quarity_str;
__weak IBOutlet UIPickerView *picker;
}
// ここを修正 2追加
@property (weak, nonatomic) id delegate;
@property (nonatomic,retain) NSString *Mapflip_quarity_str;
@property (strong, nonatomic) NSManagedObjectContext *managedObjectContext;
@property (strong, nonatomic) NSFetchedResultsController *fetchedResultsController;

@end

MapViewController.h

@interface MapViewController : UIViewController{
// __weak IBOutlet MKMapView *mapView;
NSString *select_quarity_str;
}

LaunchImage

平成30年3月3日(土曜日)

iPhone X
Portrait dimensions
1125px × 2436px (375pt × 812pt @3x)

Landscape dimensions
2436px × 1125px (812pt × 375pt @3x)

その他は、前バージョンにてOK!!

coredata(全データ オン・オフ)

平成30年3月3日(土曜日)

DetailTableViewController.m

関数 On_off_flag_Set

wildcardにより、全選択肢、前データオン・オフ。


    // デバッグモード 全データ オン・オフ
    [On_off_Request setPredicate:[NSPredicate predicateWithFormat:@"name LIKE %@",@"*"]];

    // デバッグモード 全データ オン・オフ
    for (int i = 0; i < On_off_Request_Lists.count; i++) {
        [[On_off_Request_Lists objectAtIndex:i] setValue:[NSNumber numberWithBool:flag] forKey:@"on_1"];
    }

CSV READ関連 カンマ(,)に注意!!

平成30年3月2日(金曜日)

注意事項!! 以下 二点。

PHPは、WEATHER INFORMATION OF HOFU CITY内()
// 半角,を全角、に変換 iphone csv filereadで分割不良!!
$time = str_replace( “,”, “、”, $time);

その他、ロータリースイッチの切り替えは、
ソートディスクリプタと連動していることに、注意!!

WKWebView NSCoding support was broken in previous versions

平成30年2月28日(水曜日)

九州温泉道に組み込み、動作OK!!なるも、動きが遅く実用には遠いか。

Xcode 9 GM – WKWebView NSCoding support was broken in previous versions


import UIKit
import WebKit
class ViewController: UIViewController, WKUIDelegate {
    @IBOutlet weak var webViewContainer: UIView!
    var webView: WKWebView!

    override func viewDidLoad() {
        super.viewDidLoad()
        let webConfiguration = WKWebViewConfiguration()
        let customFrame = CGRect.init(origin: CGPoint.zero, size: CGSize.init(width: 0.0, height: self.webViewContainer.frame.size.height))
        self.webView = WKWebView (frame: customFrame , configuration: webConfiguration)
        webView.translatesAutoresizingMaskIntoConstraints = false
        self.webViewContainer.addSubview(webView)
        webView.topAnchor.constraint(equalTo: webViewContainer.topAnchor).isActive = true
        webView.rightAnchor.constraint(equalTo: webViewContainer.rightAnchor).isActive = true
        webView.leftAnchor.constraint(equalTo: webViewContainer.leftAnchor).isActive = true
        webView.bottomAnchor.constraint(equalTo: webViewContainer.bottomAnchor).isActive = true
        webView.heightAnchor.constraint(equalTo: webViewContainer.heightAnchor).isActive = true
        webView.uiDelegate = self

        let myURL = URL(string: "https://www.apple.com")
        let myRequest = URLRequest(url: myURL!)
        webView.load(myRequest)
    }