250x250
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 라온익스
- 린나이온도조절기
- todoist
- npm moment
- 온도조절기
- 기름보일러
- Raspberry Pi
- 에버노트
- node.js
- Node
- 네모안
- rasppi3
- Swipes
- debounce
- 가스요금폭탄
- 경동
- IOT
- ReactNative
- 온도센서
- evernote
- 가스비절약
- REACT
- EditText
- xcode11
- react-native
- 난방비절약
- 나비엔
- nodejs
- anydo
- __attribute__
Archives
- Today
- Total
목록REACT (2)
어허
debounce - Promise
export function debouncePromise(f, i) { let t = null; return (…args) => { clearTimeout(t); return new Promise(resolve => { t = setTimeout(() => resolve(f(…args)), i); }); }; } 출처 : stackoverflow 어딘가에서 보고 사용한건데 기억이 안남
개발/React
2022. 11. 23. 10:01
React Native - xcode 11 update 후 ios error
1. ios 시뮬레이터 찾기 실패 react-native: 0.59.5 macOS xcode 10.xx 에서 11.0으로 업데이트 후 아래와 같이 나오면서 시뮬레이터로 실행이 안된다 info Found Xcode project NemocloudApp.xcodeproj CoreData: annotation: Failed to load optimized model at path '/Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/Frameworks/InstrumentsPackaging.framework/Versions/A/Resources/XRPackageModel.momd/XRPackageModel 9.0.omo' error Co..
개발/React Native
2019. 10. 8. 13:02