๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ

๐Ÿ’š ๊ฐœ๋ฐœ98

[์•ˆ๋“œ๋กœ์ด๋“œ] Splash Screen ์˜ˆ์ œ ๋ชจ๋ฐ”์ผ ์•ฑ์—์„œ Splash Screen ์ด๋ž€? - ์–ด๋–ค ์–ดํ”Œ๋ฆฌ์ผ€์ด์…˜์ด ์‹คํ–‰๋˜๋ฉด์„œ ๊ฐ€์žฅ ์ฒ˜์Œ์— ๋œจ๋Š” ํ™”๋ฉด์ด๋‹ค. - ํ•œ๊ตญ์ธ์ด ๋ชจ๋‘ ์‚ฌ์šฉํ•˜๋Š” ์นด์นด์˜คํ†ก์„ ์˜ˆ๋กœ ๋“ค์ž๋ฉด, ์นด์นด์˜คํ†ก ์–ดํ”Œ์„ ์ผค ๋•Œ ๊ฐ€์žฅ ์ฒ˜์Œ์— ๋œจ๋Š” ๋…ธ๋ž‘์ƒ‰ ํ™”๋ฉด์„ ๋งํ•œ๋‹ค. - ๋ณดํ†ต ์ดˆ๊ธฐํ™” ์ž‘์—…์„ ํ•˜๊ฑฐ๋‚˜ ๋ฒ„์ „ ์ •๋ณด ํ‘œ๊ธฐ ๋“ฑ์— ์‚ฌ์šฉํ•œ๋‹ค. 1. activity_main.xml 2. activity_splash.xml 3. AndroidManifest.xml 4. MainActivity.java package com.devshin93.splashexample; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends App.. 2021. 10. 20.
[iOS] Objective-C NSString์˜ ๊ฐ’์„ null ์ฒดํฌํ•˜๋Š” ๋ฐฉ๋ฒ• NSString *nsStr = @"Hello World"; if ([nsStr isEqual: [NSNull null]]) printf("null"); else printf("not null"); https://stackoverflow.com/questions/19546920/how-to-check-nsstring-is-null-or-not how to Check NSString is null or not I want to check weather a NSString is null or not. Im assigning from an JSON array. After assigning that string value is . Now I want to check this string is null or no.. 2021. 10. 13.
[iOS] Objective-C NSMutableDictionary ๋ฅผ json ํ˜•ํƒœ๋กœ ๋ณ€ํ™˜ iOS (Objective-C) ์—์„œ JSON ํ˜•ํƒœ๋กœ http ํ†ต์‹ ์„ ํ•˜๊ธฐ ์œ„ํ•ด json ํ˜•ํƒœ๋กœ ๋ณ€ํ™˜์„ ํ•˜๋Š” ์ฝ”๋“œ์ด๋‹ค. NSMutableDictionary ํ˜•ํƒœ์˜ ๋ฐ์ดํ„ฐ๋ฅผ NSJSONSerialization ์„ ์ด์šฉํ•ด NSData ๋กœ ๋ณ€ํ™˜ํ•œ ํ›„, ๋‹ค์‹œ NSString ์œผ๋กœ ๋ณ€ํ™˜ํ•œ๋‹ค. NSMutableDictionary *retDic = [[NSMutableDictionary alloc]init]; [retDic setValue:๊ฐ’1 forKey:@"ํ‚ค1"]; [retDic setValue:๊ฐ’2 forKey:@"ํ‚ค2"]; NSData *requestData = [NSJSONSerialization dataWithJSONObject:retDic options:0 error:nil]; NSString *req.. 2021. 10. 6.
YUI Compressor ์„ ์‚ฌ์šฉํ•˜์—ฌ .js ํŒŒ์ผ์„ .min.js ํŒŒ์ผ๋กœ ๋งŒ๋“œ๋Š” ๋ฐฉ๋ฒ• 1. ์•„๋ž˜ ์‚ฌ์ดํŠธ์— ์ ‘์†ํ•œ๋‹ค. https://yui.github.io/yuicompressor/ YUI Compressor According to Yahoo!'s Exceptional Performance Team, 40% to 60% of Yahoo!'s users have an empty cache experience and about 20% of all page views are done with an empty cache (see this article by Tenni Theurer on the YUIBlog for more information on browser c yui.github.io 2. Download ๋ฅผ ํด๋ฆญํ•˜์—ฌ ๋‹ค์šด๋กœ๋“œ ํŽ˜์ด์ง€๋กœ ์ด๋™ํ•œ๋‹ค. 3. ๋‹ค์šด๋กœ๋“œ ํŽ˜์ด์ง€์—์„œ yuicompre.. 2021. 10. 6.