並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 17 件 / 17件

新着順 人気順

PREVIEWSの検索結果1 - 17 件 / 17件

  • Xcode Previewsを用いたUIKitベースのプロジェクトの開発効率化 | メルカリエンジニアリング

    こんにちは。メルペイのiOSチームの@kenmazです。 メルペイのiOSチームでは Xcode11 で導入された Xcode Previews 機能を用いて、UIKitベースのプロジェクトの開発効率向上に取り組んでいます。Xcode PreviewsといえばSwiftUI用の開発支援機能、というイメージがありますが、実は従来のUIKitベースのプロジェクトに対しても使用が可能です。 Xcode Previews を使うことでiOS Simualtor等を起動することなく、様々な状態のビューをリアルタイムにプレビューできるため、開発効率が大幅に向上します。 またXcode Previewsが提供する強力なプレビュー機能を使うことで、Interface Builderの支援も不要となったため、従来のxib/Storyboardを用いたビューの実装から、コードによるビューの実装への移行を試みる

      Xcode Previewsを用いたUIKitベースのプロジェクトの開発効率化 | メルカリエンジニアリング
    • Xcode PreviewsからSnapshotテストを自動生成する | メルカリエンジニアリング

      Merpay Advent Calendar 2020 の6日目は、メルペイiOSチームの kenmaz がお送りします。 こんにちは。merpayのiOSチームのkenmazです。 この記事では「Xcode PreviewsからSnapshotテストを自動生成する」というテーマで、メルペイiOSチームで採用しているiOSアプリの開発スタイルや自動テストについての取り組みの現状、そこで直面した課題、そしてその解決方法について、具体例を交えながら紹介していきます。 背景 Xcode Previewsを用いた開発 メルペイのiOSチームでは、iOSアプリのほとんどのViewやUI部品をコードで記述し、Xcode Previewsを使ってレイアウトの確認を行う、という開発スタイルを採用しています。これによりiOS Simulatorなどを起動することなく、さまざまな状態のViewをXcode上で

        Xcode PreviewsからSnapshotテストを自動生成する | メルカリエンジニアリング
      • GitHub - getmeli/meli: Platform for deploying static sites and frontend applications easily. Automatic SSL, deploy previews, reverse proxy, and more.

        You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

          GitHub - getmeli/meli: Platform for deploying static sites and frontend applications easily. Automatic SSL, deploy previews, reverse proxy, and more.
        • Xcode Previewsをまとめて実機で触れるUIプロトタイプアプリにする - nana開発者ブログ

          @hiragramです。nanaのプロダクトマネージャーとiOSアプリ開発を担当しています。 nanaは現在フルリニューアルに向けた作り直しに取り組んでいます。2022年9月現在、デザインや仕様を練ることと、手触りを確かめるためのプロトタイプ実装とを、グルグル繰り返しているところです。そのグルグルをより速くするために作った仕組みを紹介します。 UI確認用のプロトタイプアプリ nanaのiOSアプリ開発において、私たちはコードを書かずとも簡単にモックを作れるようなよくあるプロトタイピングツールを使わず、ネイティブアプリとしてプロトタイプを実装しています。nanaのプロトタイプには単なるデザインの事前確認だけではなく、仕様に対する設計の事前確認、シンプルな良い設計のための仕様の事前確認といった目的があり、それらは既存のプロトタイピングツールでは実現できないためです。 SourceryでXcod

            Xcode Previewsをまとめて実機で触れるUIプロトタイプアプリにする - nana開発者ブログ
          • AWS previews Mountpoint, a specialized open source Rust client to mount S3 storage into the file system • DEVCLASS

            Interview AWS has introduced Mountpoint, an open source client for Linux that connects to S3 (Simple Storage Service) using file APIs, enabling applications to traverse S3 files as if they are in the file system. It is a specialized client aimed at data analytics, and not designed for general-purpose use. According to advance information from AWS, “with Mountpoint, file operations map to GET and P

              AWS previews Mountpoint, a specialized open source Rust client to mount S3 storage into the file system • DEVCLASS
            • Xcode Previews でUIKitベースのアプリ開発を効率化する - iOSDC Japan 2020

              iOSDC Japan 2020 で発表した内容です。 https://fortee.jp/iosdc-japan-2020/proposal/a88be712-b87a-4d87-bc6d-2579c2ce9b35 動画はこちら https://www.youtube.com/watch?v=NnqGmeR0uqE 発表者ノート付きPDFは以下からダウンロードできます。 https://drive.google.com/file/d/1GSLyYTSxxW5Q-9C7JFUlYBRvbNdTmUml/view?usp=sharing

                Xcode Previews でUIKitベースのアプリ開発を効率化する - iOSDC Japan 2020
              • Apple previews powerful software updates designed for people with disabilities

                New SignTime service launches Thursday, May 20, to connect Apple Store and Apple Support customers with on-demand sign language interpreters Cupertino, California Apple today announced powerful software features designed for people with mobility, vision, hearing, and cognitive disabilities. These next-generation technologies showcase Apple’s belief that accessibility is a human right and advance t

                  Apple previews powerful software updates designed for people with disabilities
                • iOS12でもXcode Previewsを使いたい! - Qiita

                  はじめに ある日、下記のような条件によって表示する項目が変わるカスタム View を修正することになりました。(実際はもっと項目が多い) final class PiyoView: UIStackView { struct Config { let isAlertShown: Bool let alert: String? let isInfoShown: Bool let info: String? let message: String } private var alertBackgroundView: UIView = { let view = UIView() view.backgroundColor = UIColor(named: "alert_red_bg") view.translatesAutoresizingMaskIntoConstraints = false re

                    iOS12でもXcode Previewsを使いたい! - Qiita
                  • Next-generation of Deploy Previews and Netlify acquisition of FeaturePeek

                    About five years ago, Netlify pioneered the concept of Deploy Previews. We learned a lot from emerging best practices in large development teams and created an automated workflow where every push to Git can generate a unique preview URL. While this made it much easier for teams to share progress, it exposed a new challenge: gathering feedback on that preview. It’s not uncommon for feedback to roll

                      Next-generation of Deploy Previews and Netlify acquisition of FeaturePeek
                    • Prettify TypeScript: Better Type Previews - Visual Studio Marketplace

                      Prettify TypeScript Prettify TS is a Visual Studio Code extension that enhances your TypeScript development experience. It provides hover information for TypeScript types, classes, interfaces, and more, formatted in a more readable and configurable way. Example Features Hover Information: Just hover over a type, class, interface, etc., and you'll see a prettified version of its declaration in the

                        Prettify TypeScript: Better Type Previews - Visual Studio Marketplace
                      • Mastering SwiftUI previews

                        Mastering SwiftUI previews 10 Mar 2021 This week, I want to talk about one of the most powerful Xcode features, SwiftUI previews. SwiftUI previews allow you to look at your SwiftUI views inside Xcode without running the app in the simulator. You can also preview UIKit views and controllers by wrapping them in SwiftUI. Today we will learn about all the powerful features of previews in Xcode. Enhanc

                          Mastering SwiftUI previews
                        • Apple previews iOS 13

                          Introduces Dark Mode, Advanced Photo and Camera Features, Sign In with Apple and an All-New Maps Experience San Jose, California — Apple today previewed iOS 13, introducing a dramatic new look for iPhone with Dark Mode and new ways to browse and edit photos, sign in to apps and websites, and navigate the world with an all-new map. iOS 13 is faster and more responsive with optimizations across the

                            Apple previews iOS 13
                          • Development Assets in Xcode to enrich SwiftUI Previews

                            Development Assets in Xcode allow you to provide test data to use within SwiftUI previews and other code during development. Assets marked for development will only be included in debug builds and removed once you create an archive of your app. Without being aware of development assets, you might have added a few smaller images to your app’s Asset Catalog to be able to have a little nicer SwiftUI

                              Development Assets in Xcode to enrich SwiftUI Previews
                            • GitHub - JakePartusch/serverlessui: A command-line utility for deploying serverless applications to AWS. Complete with custom domains, deploy previews, TypeScript support, and more.

                              Serverless UI is a free, open source command-line utility for quickly building and deploying serverless applications on AWS Bring your own UI It doesn't matter if it's React, Vue, Svelte or JQuery. If it compiles down to static files, then it is supported. Serverless Functions Your functions become endpoints, automatically. Serverless UI deploys each function in your /functions directory as a Node

                                GitHub - JakePartusch/serverlessui: A command-line utility for deploying serverless applications to AWS. Complete with custom domains, deploy previews, TypeScript support, and more.
                              • Beautiful link previews. Automagically. | Mugshot Bot

                                Beautiful link previews. Automagically.Automate link preview images for every page on your blog. No fussing with design tools or wading through thousands of stock photos.

                                  Beautiful link previews. Automagically. | Mugshot Bot
                                • SwiftUI Previews on macOS Catalina and Xcode 11

                                  Written by Mattt October 14th, 2019 This article has been translated into: 한국어 Working on a large iOS codebase often involves a lot of waiting: Waiting for Xcode to index your files, waiting for Swift and Objective-C code to compile, waiting for the Simulator to boot and your app to launch… And after all of that, you spend even more time getting your app into a particular state and onto a particul

                                    SwiftUI Previews on macOS Catalina and Xcode 11
                                  • Apple previews Live Speech, Personal Voice, and more new accessibility features

                                    CUPERTINO, CALIFORNIA Apple today previewed software features for cognitive, vision, hearing, and mobility accessibility, along with innovative tools for individuals who are nonspeaking or at risk of losing their ability to speak. These updates draw on advances in hardware and software, include on-device machine learning to ensure user privacy, and expand on Apple’s long-standing commitment to mak

                                      Apple previews Live Speech, Personal Voice, and more new accessibility features
                                    1