javascript로 웹뷰와 통신중 json변환 및 확인 코드. 1234567 NSDictionary *test = [NSDictionary dictionaryWithObjectsAndKeys:@"userid",@"id",@"123456",@"pw", nil]; NSDictionary *test2 = [NSDictionary dictionaryWithObjectsAndKeys:test,@"login", nil]; NSError *error; NSData *jsonData = [NSJSONSerialization dataWithJSONObject:test2 options:NSJSONWritingPrettyPrinted error:&error]; NSString *myString = [[NSString al..
iOS 다음 지도 길찾기 연동 및 설치되어 있지 않을 경우 다음지도 앱스토어로 이동 처리. 1234567891011121314151617181920212223242526272829303132333435363738394041// 다음지도를 통한 길찾기 버튼 클릭 리스너-(void)goNaverMapClick{ NSURL *url = [NSURL URLWithString:[NSString stringWithFormat: @"daummaps://route?sp=%f,%f&ep=%f,%f&by=CAR",mainView.userLatitude, mainView.userLongitude, lat, lon]]; //다음 지도 설치 유무 판단. BOOL isInstall = [[UIApplication sharedAp..
앱간 연동 스키마 설정 및 해당 앱이 설치 되지 않았을 경우 해당 스토어로 이동. 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849//전역설정.private AlertDialog mDialog = null; //이동시킬 인텐트 생성.Intent intent = getPackageManager().getLaunchIntentForPackage("[패키지명]"); if (intent == null){ //다이얼로그 생성. mDialog = createDialog(); mDialog.show();}else{ intent.setData(Uri.parse("해당 앱 연결할 스키마://")); startA..
OS가 계속 업데이트 되면서 SNS 라이브러리도 계속 진화하고iOS 버전도 올라가면서 이놈의 연동 설정은 계속 바뀌고 있다.하지만 iOS6 이상부터는 계정이나, 키 없이도 기본 계정만 가지고 있으면 SNS에 날릴 수 있으니 이 얼마나 편한가.. 다만 어디서 보냈는지 출저는 나오지 않는다.사용자가 정해진 메시지 양식에 글을 덧 붙일 수 있다. 1. 프레임워크에 social 프레임 워크를 추가.2. 해더에 프레임워크 #import 3,SLComposeViewController 객채를 생성하여 viewController에 붙이면 된다. -(void)sendTwitter{if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter]) {..