服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - 完整的iOS新浪微博分享功能开发

完整的iOS新浪微博分享功能开发

2021-02-20 17:04young_for_your IOS

这篇文章主要为大家详细介绍了较为完整的iOS新浪微博分享功能开发的相关资料,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了android九宫格图片展示的具体代码,供大家参考,具体内容如下

做新浪分享 需先去http://open.weibo.com/apps注册开发者app 很简单!

第1步

完整的iOS新浪微博分享功能开发

第2步

完整的iOS新浪微博分享功能开发3

设置你的应用的信息

完整的iOS新浪微博分享功能开发

找到自己的appkey

完整的iOS新浪微博分享功能开发

还需要设置自己的kappredirecturl测试可以随便写个!

完整的iOS新浪微博分享功能开发

开发部分在下面ios新浪微博分享(2)这部分:

开发需要下载官方的sdkhttp://open.weibo.com/wiki/sdk#ios_sdk

完整的iOS新浪微博分享功能开发

本人下载的版本

完整的iOS新浪微博分享功能开发

新建一个viewcontrroler==weiboviewcontroller

效果图

完整的iOS新浪微博分享功能开发

完整的iOS新浪微博分享功能开发

h文件

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#import
#import "sinaweb/sinaweibo/sinaweibo.h"
#import "sinaweb/sinaweibo/sinaweiborequest.h"
@interface weiboviewcontroller : uiviewcontroller<</span>sinaweibodelegate,sinaweiborequestdelegate>
{
 uibutton *_sharebutton;
 uitextview *_textview;
 uiview *_shareview;
 uiactivityindicatorview *_indicator;}
@property (strong, nonatomic) uibutton *sharebutton;
@property (strong, nonatomic) uitextview *textview;
@property (strong, nonatomic) uiview *shareview;
@property (strong, nonatomic) uiactivityindicatorview *indicator;
@property (readonly, nonatomic) sinaweibo *sinaweibo;
- (void) addbutton;
- (void) addshareview;
- (void) share:(uibutton*) sender;
- (void) removeshare:(uibutton*) sender;
- (void) sendshare:(uibutton*) sender;
- (void) exitshare:(uibutton*) sender;
@end

m文件

?
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
#import "weiboviewcontroller.h"
#define kappkey    @"appkey"
#define kappsecret   @"appsecret"
#define kappredirecturl  @"重定向url"
@interface weiboviewcontroller ()
 
 
 
@end
 
 
 
@implementation weiboviewcontroller
@synthesize sharebutton = _sharebutton;
@synthesize textview = _textview;
@synthesize shareview = _shareview;
@synthesize indicator = _indicator;
@synthesize sinaweibo = _sinaweibo;
 
 
 
- (sinaweibo*)sinaweibo
 
{
 
 _sinaweibo.delegate=self;
 
 return _sinaweibo;
 
}
 
 
 
- (void)viewdidload
 
{
 [super viewdidload];
 _indicator = [[uiactivityindicatorview alloc] initwithactivityindicatorstyle:uiactivityindicatorviewstylewhitelarge];
 [_indicator setframe:cgrectmake(0, 0, 50, 50)];
 _indicator.center = self.view.center;
 [self.view addsubview:_indicator];
 
 
 _sinaweibo = [[sinaweibo alloc] initwithappkey:kappkey appsecret:kappsecret appredirecturi:kappredirecturl anddelegate:self];
 nsuserdefaults *defaults = [nsuserdefaults standarduserdefaults];
 nsdictionary *sinaweiboinfo = [defaults objectforkey:@"sinaweiboauthdata"];
 if ([sinaweiboinfo objectforkey:@"accesstokenkey"] && [sinaweiboinfo objectforkey:@"expirationdatekey"] && [sinaweiboinfo objectforkey:@"useridkey"])
 
 {
 
  _sinaweibo.accesstoken = [sinaweiboinfo objectforkey:@"accesstokenkey"]; 
  _sinaweibo.expirationdate = [sinaweiboinfo objectforkey:@"expirationdatekey"]; 
  _sinaweibo.userid = [sinaweiboinfo objectforkey:@"useridkey"];
 
 }
 
 [self addbutton];
 
}
 
- (void) addbutton
{
 _sharebutton = [uibutton buttonwithtype:uibuttontyperoundedrect];
 uiimage*butimg=[uiimage imagenamed:@"button_background@2x.png"];
 
 uiimage*logobutimg=[uiimage imagenamed:@"logo@2x.png"];
 [self.sharebutton setframe:cgrectmake(10, 10, butimg.size.width, butimg.size.height)];
 [self.sharebutton setbackgroundimage:butimg forstate:uicontrolstatenormal];
 [self.sharebutton setimage:logobutimg forstate:uicontrolstatenormal];
 [self.sharebutton addtarget:self action:@selector(share:) forcontrolevents:uicontroleventtouchupinside];
 [self.view addsubview:self.sharebutton];
 
}
 
 
 
//分享按钮响应方法
 
- (void) share:(uibutton*) sender
 
{
 sinaweibo *sinaweibo = [self sinaweibo];
 bool authvalid = sinaweibo.isauthvalid;
 if (!authvalid)
 {
  [sinaweibo login];
 }
 else
 {
  nsstring *poststatustext = @"[哈哈]"
  sinaweibo *sinaweibo = [self sinaweibo];
  //只发送汉字
//  [sinaweibo requestwithurl:@"statuses/update.json" params:[nsmutabledictionary dictionarywithobjectsandkeys:poststatustext,@"status", nil] httpmethod:@"post" delegate:self];
//图片和连接 和文字
 
  [sinaweibo requestwithurl:@"statuses/upload.json"
 
       params:[nsmutabledictionary dictionarywithobjectsandkeys:
 
         @"要发布的微博文本内容,超链接http://baidu.com", @"status",
         [uiimage imagenamed:@"icon.png"], @"pic", nil]
 
      httpmethod:@"post"
       delegate:self];
  
  [_shareview removefromsuperview]; 
  [self.indicator startanimating];
 }
}
 
//登陆成功后回调方法
- (void) sinaweibodidlogin:(sinaweibo *)sinaweibo
{
 nslog(@"%@--%@--%@--%@",sinaweibo.accesstoken,sinaweibo.expirationdate, sinaweibo.userid,sinaweibo.refreshtoken);
 nsdictionary *authdata = [nsdictionary dictionarywithobjectsandkeys:
        sinaweibo.accesstoken, @"accesstokenkey",
        sinaweibo.expirationdate, @"expirationdatekey",
        sinaweibo.userid, @"useridkey",
        sinaweibo.refreshtoken, @"refresh_token", nil];
 [[nsuserdefaults standarduserdefaults] setobject:authdata forkey:@"sinaweiboauthdata"];
 
 [[nsuserdefaults standarduserdefaults] synchronize];
 
//可以在此选在授权成功后直接发送
 
}
//取消按钮回调方法
- (void) removeshare:(uibutton*) sender
{
 [_shareview removefromsuperview];
 
}
 
//发送按钮回调方法
 
- (void) sendshare:(uibutton*) sender
 
{
 nsstring *poststatustext = self.textview.text;
 sinaweibo *sinaweibo = [self sinaweibo];
 [sinaweibo requestwithurl:@"statuses/updates.json" params:[nsmutabledictionary dictionarywithobjectsandkeys:poststatustext,@"status", nil] httpmethod:@"post" delegate:self];
 [_shareview removefromsuperview];
 [self.indicator startanimating];
 
}
 
//退出登陆回调方法
- (void) exitshare:(uibutton*) sender
{
 sinaweibo *sinaweibo = [self sinaweibo];
 [sinaweibo logout];
 [_shareview removefromsuperview];
 nslog(@"退出登陆");
}
 
//请求完成回调该方法
- (void)request:(sinaweiborequest *)request didfinishloadingwithresult:(id)result
{
 [self.indicator stopanimating];
 uialertview* alert = [[uialertview alloc] initwithtitle:@"发送成功" message:@"提示" delegate:self cancelbuttontitle:@"确定" otherbuttontitles: nil];
 [alert show];
 [alert release];
 nslog(@"发送成功");
 
}
 
 
 
//请求失败回调该方法
- (void)request:(sinaweiborequest *)request didfailwitherror:(nserror *)error
 
{
 [self.indicator stopanimating];
 uialertview* alert = [[uialertview alloc] initwithtitle:@"发送失败,请检测网络链接" message:@"提示" delegate:self cancelbuttontitle:@"确定" otherbuttontitles: nil];
 [alert show];
 [alert release];
 nslog(@"发送失败");
 
}
 
- (void)viewdidunload
{
 [super viewdidunload];
 // release any retained subviews of the main view.
}
 
- (bool)shouldautorotatetointerfaceorientation:(uiinterfaceorientation)interfaceorientation
{
 return (interfaceorientation != uiinterfaceorientationportraitupsidedown);
 
}
 
@end

源码下载:sinaweiboshare.rar

个人信息获得

?
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
29
30
31
32
33
34
35
36
37
38
39
40
41
@interface userinfoviewcontroller : uiviewcontroller<sinaweiborequestdelegate>//实现请求代理
 
bool authvalid = self.sina.isauthvalid;//判断是否授权了
 
 if (authvalid){
 
  [self.sina requestwithurl:@"users/show.json" params:[nsmutabledictionarydictionarywithobject:self.sina.userid forkey:@"uid"] httpmethod:@"get" delegate:self];
 
 }
 
//请求失败回调方法
 
- (void)request:(sinaweiborequest *)request didfailwitherror:(nserror *)error{
 
 if ([request.url hassuffix:@"users/show.json"]){
 
  [self.userinfodic release], self.userinfodic = nil;
 
 }
 
}
 
 
 
//请求成功回调方法
 
- (void)request:(sinaweiborequest *)request didfinishloadingwithresult:(id)result{
 
 if ([request.url hassuffix:@"users/show.json"]){
 
  [self.userinfodic release];
 
  self.userinfodic = [result retain];
 
  //nslog(@"用户信息字典:%@", self.userinfodic); 字典数据 返回字段下面
 
 }
 
 
 
}

返回字段说明

完整的iOS新浪微博分享功能开发

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

延伸 · 阅读

精彩推荐
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25