본문 바로가기

분류 전체보기

(332)
내가 찍은 사진 vs 남이 찍어준 사진 내가 찍은 사진 vs 남이 찍어준 사진 반려동물 또한 셀카는 역시 각도가 중요하네요~!!. 아이프렌즈펫 구경하러 가기http://bit.ly/2mKVerX
[iOS 강좌] 오픈API 이용한 날씨 APP 만들기 - 5. 도시 정보 변경 제공하는 날씨 API에서 도시 정보를 획득하려면, 별도로 citi 정보를 받기 위해 API를 호출해야합니다. 아래의 json파일을 아마존 s3 저장소에 저장하고, 호출을 하였습니다. https://s3.ap-northeast-2.amazonaws.com/com.ios/city.list.json Citi정보에 대한 모델 객체를 생성하고, #import #import "Coord.h"@interface City : NSObject @property (nonatomic,strong) id id;@property (nonatomic,strong) Coord *coord;@property (nonatomic,strong) NSString *country;@property (nonatomic,strong) NSSt..
[iOS 강좌] 오픈API 이용한 날씨 APP 만들기 - 6. 모델 객체 날씨 API 호출된 모델 객체를 생성합니다. { "dt": 1532314800, "main": { "temp": 308.77, "temp_min": 305.287, "temp_max": 308.77, "pressure": 1002.18, "sea_level": 1023.05, "grnd_level": 1002.18, "humidity": 67, "temp_kf": 3.48 }, "weather": [ { "id": 801, "main": "Clouds", "description": "few clouds", "icon": "02d" } ], "clouds": { "all": 20 }, "wind": { "speed": 1.47, "deg": 229.003 }, "sys": { "pod": "d" }, "d..
[iOS 강좌] 오픈API 이용한 날씨 APP 만들기 - 7. CoreLocation 내위치를 기반으로 날씨 정보를 가져올수 있습니다. // 코어 로케이션#import // 변수 @property (nonatomic, strong) CLLocationManager *locationManager;// Location Manager 생성self.locationManager = [[CLLocationManager alloc] init]; // Location Receiver 콜백에 대한 delegate 설정self.locationManager.delegate = self;// 델리게이트// longitude, latitude 값 가져옴-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)location..
[iOS 강좌] 오픈API 이용한 날씨 APP 만들기 - 4. open API 날씨 API를 이용하기 위해, 아래의 사이트에서 회원가입 후 key를 발급 받습니다. •https://openweathermap.org/•날씨 오픈 API . 회원가입 후 API Key 발급 (무료) 여러 API 중 5일 3시간 단위의 API를 사용합니다. 도시명과, APP ID, 발급받은 Key로 API를 호출합니다. •API > 5 day / 3 hour forecast > API DOC•도시명으로 날씨 검색 (3시간 단위, 5일치) api.openweathermap.org/data/2.5/forecast?id=524901&APPID=발급받은 API Key 호출방법은 AFKNetwork 오픈소스를 이용 하여, get 방식으로 간단하게 호출할수 있습니다. NSDictionary * parameters ..
[iOS 강좌] 오픈API 이용한 날씨 APP 만들기 - 3. UIkit Framework UIScrollView // 객체 생성 및 초기화UIScrollView *scrollView = [[UIScrollView alloc] init];// 프레임 설정[scrollView setFrame:CGRectMake(0,0, 0,0,)];// 백그라운드 컬러 설정[scrollView setBackgroundColor:[UIColor orangeColor]];// 컨텐츠 크기 설정[scrollView setContentSize:CGSizeMake(0,0)];// 인디케이트 설정scrollView.showsVerticalScrollIndicator =YES;// 델리게이트 설정scrollView.delegate =self;// 뷰에 추가[self.view addSubview:scrollView];// 스..
[iOS 강좌] 오픈API 이용한 날씨 APP 만들기 - 2. Objecive - C 기초 •C 프로그래밍 언어에 스몰토크 스타일의 메시지 구문을 추가한 객체 지향 언어 •원래는 넥스트의 NeXTSTEP 운영 체제에서 주 언어 NSLog #import int main(int argc, const char * argv[]) { @autoreleasepool { // insert code here... int wheels =4; int seats =3; float cc =2.4; NSLog(@"wheels =%i",wheels); NSLog(@"seats =%i",seats); NSLog(@"version =%f",cc); } return 0;} @interface, @implementation @interface Car : NSObject { int wheels; int seats;}-(void..
[NCP] CLA를 통한 로그 수집과 분석 지난 포스팅 에서는 서버 상세 모니터링과 알람설정에 대해 알아보았습니다. 이번에는 CLA 를 통한 로그 수집과 분석에 대해 알아보도록 하겠습니다. Management > Cloud Log Analytics 에서 “이용바로가기” 를 선택합니다. Management 선택 후 목록에서 서버를 선택한 후 상단 “수집설정” 을 선택합니다. Syslog, Apache, Custom Log 를 선택 합니다. Custom Log 항목에 - Log Type : secure - Log 경로 : /var/log/secure 를 입력 후 “적용” 을 클릭합니다. 서버에 SSH 접속 후 아래와 같이 설정을 진행합니다. “클립보드에 복사하기” 를 통해 agent 설치 명령어를 복사 합니다 Agent 설치를 위해 SSH로 서버에 ..