wantedly / ios_night

Let's talk about iOS development -- iOS Night 📱🌙 You might apply to this meetup from
https://www.wantedly.com/companies/wantedly/projects
18 stars 0 forks source link

2019/11/05 19:30~20:30 #73

Closed ngtk closed 4 years ago

ngtk commented 4 years ago

Why

Where

Pearl Jam (Subject to change)

5F, MG Shirokanedai Building (Wantedly, Inc. Tokyo HQ)

Who

You are working for Wantedly? Sure, you can join anytime. If not, you need to contact us first. Or, you can "want to visit" the meetup, which you can find in www.wantedly.com/companies/wantedly/projects.

What

You write topics like below contents and we talk about these on the meetup. Every participant needs to write one topic at least.

Also, you can find new topics from the newsletters:

How

         ・・・

参加者は開催までに話したいことを少なくとも1トピックをコメントしましょう。 ネタ被りを避けるために、まずはタイトルだけでコメントすることを推奨します。 より多くの学びを得るためにどんな内容でもアウトプットを歓迎します!😊

cc/ @wantedly/ios

Edit this template

Previous issue

jiro commented 4 years ago

今日から @sorakoro が参加します! 🎉

ngtk commented 4 years ago

On Code Reviews

https://basthomas.github.io/on-code-reviews

jiro commented 4 years ago

Swift Packageの編集

https://developer.apple.com/videos/play/wwdc2019/410/ を見ていて気付いた。

(常識かもだけど、)Package.swift をXcodeで開けば、Swift Packageに関係するすべてのファイルを含めて編集をすることができる。

特に理由がなければ、 xcodeproj ファイルの追加・管理は必要ない。

hiranodept commented 4 years ago

cocoapods-pod-merge

ref: https://github.com/grab/cocoapods-pod-merge

Cocoa podsのライブラリをまとめて、起動時間を短くできる

以下の感じでMergeFileというファイルにまとめるframeworkをグループ化する

group 'Networking'
    pod 'AFNetworking'
    pod 'SDWebImage'
end

Podfileには以下を記載する

plugin 'cocoapods-pod-merge'
target 'MyApp'
    pod 'Networking', :path => 'MergedPods/Networking' # The merged pod
end

使うとき

import Networking.AFNetworking

気をつけること(Tips)

ref: https://github.com/grab/cocoapods-pod-merge#tips

2〜3個をまとめるだけなら使えるかもしれない?

jiro commented 4 years ago

Xcode 11.2 Release Notes

https://developer.apple.com/documentation/xcode_release_notes/xcode_11_2_release_notes

jiro commented 4 years ago

cocoapods-amimono

https://github.com/UnsafePointer/cocoapods-amimono

https://developer.apple.com/videos/play/wwdc2016/406/

hiranodept commented 4 years ago

絵文字レビュー

https://qiita.com/isuke/items/1b154580a78bed82f99a

ngtk commented 4 years ago

app-androidでの事例

https://github.com/wantedly/app-android/blob/19779fb8f1ce4e7d200927d6db110d9dd6fe4392/docs/README.md